結果
問題 | No.106 素数が嫌い!2 |
ユーザー | nebukuro09 |
提出日時 | 2016-10-26 09:47:44 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 258 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 27,392 KB |
最終ジャッジ日時 | 2024-05-03 06:06:53 |
合計ジャッジ時間 | 5,923 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 9 ms
6,528 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 726 ms
22,144 KB |
testcase_07 | AC | 708 ms
22,016 KB |
testcase_08 | WA | - |
testcase_09 | AC | 54 ms
7,424 KB |
testcase_10 | AC | 727 ms
22,144 KB |
testcase_11 | AC | 294 ms
13,312 KB |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | AC | 10 ms
6,272 KB |
testcase_15 | AC | 11 ms
6,528 KB |
ソースコード
import math N, K = map(int, raw_input().split()) table = [0 for i in xrange(N+1)] for i in xrange(2, int(math.sqrt(N))+3): if table[i] > 0: continue for j in xrange(i, N+1, i): table[j] += 1 print len([t for t in table if t >= K])