P1161 开灯(python3实现)

2022/2/7 14:12:32

本文主要是介绍P1161 开灯(python3实现),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

开灯 - 洛谷

"""

P1161 开灯(python3实现)
https://www.luogu.com.cn/problem/P1161

"""

a=[0]*2000001

n=int(input())

for i in range(1,n+1):

            x,y=map( float,input().split() )

            for j in range(1,int(y+1) ):

                        if a[int(j*x)]==0:
                                    a[int(j*x)]=1

                        else:
                                    a[int(j*x)]=0


i=1

while 1:
            if a[i]==1:
                        print(i)
                        break
            i+=1





这篇关于P1161 开灯(python3实现)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程