"""
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
相关文章
- 09-30Python3 中实现查询前一天日期的分享
- 09-30Python3实现快速排序
- 09-30Python3通过函数名调用函数的几种场景实现
- 09-30python3 简单实现从csv文件中读取内容,并对内容进行分类统计
- 09-30python3简单实现支持括号的加减乘除运算
- 09-30python3发送request请求基本实现
- 09-30Python 面向对象编程的一些特征 及 单例模式的实现, 父类方法的调用(python2/python3)
- 09-30Leetcode---栈系列刷题(python3实现)----#496 下一个更大元素I
- 09-30leetcode No.429 N叉树的层序遍历 (python3实现)
- 09-30Python3实现生成验证码图片