結果
問題 | No.407 鴨等素数間隔列の数え上げ |
ユーザー | yumechi |
提出日時 | 2016-08-26 00:06:28 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 432 bytes |
コンパイル時間 | 378 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 83,200 KB |
最終ジャッジ日時 | 2024-11-08 04:08:43 |
合計ジャッジ時間 | 5,644 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
57,472 KB |
testcase_01 | AC | 41 ms
52,224 KB |
testcase_02 | AC | 42 ms
51,968 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 42 ms
51,712 KB |
testcase_05 | AC | 42 ms
51,968 KB |
testcase_06 | AC | 40 ms
51,840 KB |
testcase_07 | AC | 42 ms
51,712 KB |
testcase_08 | AC | 42 ms
52,224 KB |
testcase_09 | AC | 41 ms
52,096 KB |
testcase_10 | WA | - |
testcase_11 | AC | 42 ms
51,968 KB |
testcase_12 | AC | 41 ms
52,096 KB |
testcase_13 | AC | 41 ms
51,584 KB |
testcase_14 | AC | 47 ms
58,496 KB |
testcase_15 | AC | 41 ms
51,840 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 42 ms
51,840 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
from math import sqrt def solve(): n, l = map(int, input().split()) ans = 0 primes = () i = 2 while i < (l // (n - 2)): for j in primes: if i % j == 0: break else: primes = primes + (i,) if (l + 1) < (n - 1) * i: break ans += (l + 1) - (n - 1) * i i += 1 print(ans) if __name__=="__main__": solve()