結果
問題 | No.144 エラトステネスのざる |
ユーザー | latte0119 |
提出日時 | 2015-10-26 18:25:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 48 ms / 2,000 ms |
コード長 | 420 bytes |
コンパイル時間 | 1,584 ms |
コンパイル使用メモリ | 159,344 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-09-13 11:39:08 |
合計ジャッジ時間 | 2,433 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
11,528 KB |
testcase_01 | AC | 5 ms
11,620 KB |
testcase_02 | AC | 4 ms
11,520 KB |
testcase_03 | AC | 5 ms
11,520 KB |
testcase_04 | AC | 4 ms
11,520 KB |
testcase_05 | AC | 5 ms
11,392 KB |
testcase_06 | AC | 5 ms
11,520 KB |
testcase_07 | AC | 5 ms
11,612 KB |
testcase_08 | AC | 5 ms
11,596 KB |
testcase_09 | AC | 4 ms
11,644 KB |
testcase_10 | AC | 4 ms
11,520 KB |
testcase_11 | AC | 5 ms
11,520 KB |
testcase_12 | AC | 6 ms
11,648 KB |
testcase_13 | AC | 44 ms
11,520 KB |
testcase_14 | AC | 48 ms
11,616 KB |
testcase_15 | AC | 47 ms
11,520 KB |
testcase_16 | AC | 45 ms
11,520 KB |
testcase_17 | AC | 44 ms
11,580 KB |
testcase_18 | AC | 48 ms
11,640 KB |
testcase_19 | AC | 47 ms
11,520 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:13:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d%lf",&N,&p); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<(n);i++) #define pb push_back #define all(v) (v).begin(),(v).end() int N; double p; double f[1010101]; int main(){ scanf("%d%lf",&N,&p); fill_n(f,1010101,1); f[0]=f[1]=0; double a=0; for(int i=2;i<=N;i++){ a+=f[i]; for(int j=2;i*j<=N;j++)f[i*j]*=(1-p); } printf("%.20lf\n",a); return 0; }