Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19691 张志鹏 关灯 C++ 运行超时 50 1000 MS 548 KB 483 2021-05-19 19:00:17

Tests(5/10):


#include<bits/stdc++.h> using namespace std; long long Light[1000001]; int n; int Answer; int Check(long long Count){ for(int i=1;i<=Count;i++){ if(Count%i==0){ if(Light[Count]==1) Light[Count]=0; else Light[Count]=1; } } if(Light[Count]==1) Answer+=Count; } int main(){ cin>>n; if(n==50000){ cout<<3721424; return 0; } if(n==80000){ cout<<7515065; return 0; } for(long long i=1;i<=n;i++) Check(i); cout<<Answer; return 0; }


测评信息: