結果

問題 No.106 素数が嫌い!2
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-11 01:56:25
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,549 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-06-24 17:15:13
合計ジャッジ時間 10,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
14,080 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 10 ms
6,400 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 791 ms
14,080 KB
testcase_05 AC 1,549 ms
22,016 KB
testcase_06 AC 1,509 ms
22,016 KB
testcase_07 AC 1,494 ms
21,888 KB
testcase_08 AC 99 ms
7,424 KB
testcase_09 AC 96 ms
7,552 KB
testcase_10 AC 1,522 ms
21,888 KB
testcase_11 AC 663 ms
13,312 KB
testcase_12 AC 1,514 ms
21,504 KB
testcase_13 AC 11 ms
6,272 KB
testcase_14 AC 11 ms
6,400 KB
testcase_15 AC 11 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,raw_input().split())
isPrime=[0 for i in xrange(N+1)]
ans=0
if K==1:
    print N-1
    exit()
for i in xrange(2,N+1):
    if isPrime[i]==0:
        for j in xrange(i+i,N+1,i):
            isPrime[j]+=1
            if isPrime[j]==K:
                ans+=1
print ans
0