結果
問題 | No.144 エラトステネスのざる |
ユーザー | Kaito Koike |
提出日時 | 2018-04-17 14:53:49 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 289 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 30,592 KB |
最終ジャッジ日時 | 2024-06-27 04:09:39 |
合計ジャッジ時間 | 4,300 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
input = input().split() N = int(input[0]) p = float(input[1]) a = [0 for i in range(N+1)] for i in range(2,N+1): for j in range(i*2,N+1,i): a[j] += 1 del a[:2] print(a) e = 0 for number in a: if number == 0 : e += 1 else: e += (1-p)**number print(e)