結果
問題 | No.3079 アルベド |
ユーザー | okkuukenken |
提出日時 | 2022-06-03 23:22:41 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 136 ms / 2,000 ms |
コード長 | 335 bytes |
コンパイル時間 | 864 ms |
コンパイル使用メモリ | 85,624 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 03:27:08 |
合計ジャッジ時間 | 2,736 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
5,248 KB |
testcase_01 | AC | 136 ms
5,376 KB |
testcase_02 | AC | 85 ms
5,376 KB |
testcase_03 | AC | 58 ms
5,376 KB |
testcase_04 | AC | 108 ms
5,376 KB |
testcase_05 | AC | 80 ms
5,376 KB |
testcase_06 | AC | 96 ms
5,376 KB |
testcase_07 | AC | 20 ms
5,376 KB |
testcase_08 | AC | 27 ms
5,376 KB |
testcase_09 | AC | 75 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> using namespace std; bool isp[100001]; int sum[100001]; int main(){ fill(isp+2,isp+100001,1); for(int i=2;i*i<=100000;i++) if(isp[i]) for(int j=i*i;j<=100000;j+=i) isp[j]=0; for(int i=1;i<=100000;i++) sum[i]=sum[i-1]+isp[i]; int t,n; cin>>t; while(cin>>n) cout<<sum[n]<<endl; }