結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
71,168 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 42 ms
51,912 KB
testcase_04 AC 75 ms
71,168 KB
testcase_05 AC 116 ms
82,304 KB
testcase_06 AC 107 ms
82,432 KB
testcase_07 AC 116 ms
81,792 KB
testcase_08 AC 51 ms
62,080 KB
testcase_09 AC 58 ms
61,952 KB
testcase_10 AC 111 ms
81,536 KB
testcase_11 AC 75 ms
70,912 KB
testcase_12 AC 114 ms
81,536 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 44 ms
51,968 KB
testcase_15 AC 43 ms
57,856 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