結果

問題 No.106 素数が嫌い!2
ユーザー roiti46roiti46
提出日時 2015-02-10 18:57:43
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 61,620 KB
最終ジャッジ日時 2024-06-23 18:18:46
合計ジャッジ時間 15,216 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 707 ms
61,028 KB
testcase_02 AC 736 ms
61,372 KB
testcase_03 AC 726 ms
60,876 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 909 ms
61,400 KB
testcase_07 AC 896 ms
60,864 KB
testcase_08 WA -
testcase_09 AC 738 ms
60,912 KB
testcase_10 AC 899 ms
60,868 KB
testcase_11 AC 807 ms
60,868 KB
testcase_12 WA -
testcase_13 AC 719 ms
60,744 KB
testcase_14 AC 709 ms
60,920 KB
testcase_15 AC 746 ms
60,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R = 2000002
p = [1]*R
c = [0]*R
p[0] = p[1] = 0
for i in xrange(2,int(R**0.5)):
    if p[i]:
        p[2*i::i] = [0]*len(p[2*i::i])
        c[i::i] = [j+1 for j in c[i::i]]

N,K = map(int,raw_input().split())
print sum(c[i] >= K for i in xrange(2,N+1))
0