結果

問題 No.106 素数が嫌い!2
ユーザー convexineqconvexineq
提出日時 2020-12-04 01:18:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 5,000 ms
コード長 186 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 148,980 KB
最終ジャッジ日時 2024-09-14 11:20:54
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
147,200 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 124 ms
140,800 KB
testcase_05 AC 129 ms
92,032 KB
testcase_06 AC 121 ms
81,536 KB
testcase_07 AC 117 ms
81,408 KB
testcase_08 AC 59 ms
71,168 KB
testcase_09 AC 51 ms
62,336 KB
testcase_10 AC 112 ms
81,792 KB
testcase_11 AC 70 ms
70,016 KB
testcase_12 AC 193 ms
148,980 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 42 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
r = [0]*(n+1)
for i in range(2,n+1):
    if r[i]==0:
        for j in range(i,n+1,i):
            r[j] += 1

ans = len([i for i in r if i >= k])
print(ans)
0