1 条题解
-
1
#include<bits/stdc++.h> using namespace std; void read(int &h){ char o; int x=0,y=1; o=getchar_unlocked(); while(!(o<='9'&&o>='0')){ if(o=='-'){ y=-1; } o=getchar_unlocked(); } while(o<='9'&&o>='0'){ x*=10; x+=o-'0'; o=getchar_unlocked(); } h=x*y; return ; } bool a[5010000]; int n; double r,t; int x; int main(){ read(n); for(int i=1;i<=n;i++){ cin>>r>>t; for(int j=1;j<=t;j++){ x=(int)floor(r*j); a[x]=!a[x]; } } for(int i=1;i<=1e6;i++){ if(a[i]){ cout<<i; return 0; } } return 0; }
- 1
信息
- ID
- 5219
- 时间
- 1000ms
- 内存
- 125MiB
- 难度
- 1
- 标签
- 递交数
- 20
- 已通过
- 15
- 上传者