結果

問題 No.106 素数が嫌い!2
ユーザー 河野竜也河野竜也
提出日時 2021-08-25 21:59:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,455 ms / 5,000 ms
コード長 185 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 26,132 KB
最終ジャッジ日時 2024-11-17 05:32:21
合計ジャッジ時間 10,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 743 ms
18,304 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 748 ms
18,224 KB
testcase_05 AC 1,405 ms
26,112 KB
testcase_06 AC 1,382 ms
26,112 KB
testcase_07 AC 1,352 ms
26,132 KB
testcase_08 AC 120 ms
11,520 KB
testcase_09 AC 105 ms
11,648 KB
testcase_10 AC 1,365 ms
26,032 KB
testcase_11 AC 570 ms
17,408 KB
testcase_12 AC 1,455 ms
25,472 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 25 ms
10,368 KB
testcase_15 AC 27 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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