結果

問題 No.106 素数が嫌い!2
ユーザー ああいいああいい
提出日時 2022-01-28 16:04:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 236 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-06-09 08:34:48
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
70,912 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 31 ms
51,328 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 62 ms
70,912 KB
testcase_05 AC 89 ms
82,304 KB
testcase_06 AC 90 ms
81,976 KB
testcase_07 AC 86 ms
81,408 KB
testcase_08 AC 43 ms
62,464 KB
testcase_09 AC 42 ms
61,568 KB
testcase_10 AC 86 ms
81,408 KB
testcase_11 AC 61 ms
70,400 KB
testcase_12 AC 97 ms
80,896 KB
testcase_13 AC 32 ms
51,328 KB
testcase_14 AC 32 ms
51,712 KB
testcase_15 AC 35 ms
57,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())

dat = [0] * (N + 1)
C = N + 1
for i in range(2,C):
    if dat[i] == 0:
        for j in range(i,C,i):
            dat[j] += 1
ans = 0
for i in range(2,N+1):
    if dat[i] >= K:
        ans += 1
print(ans)
0