結果

問題 No.106 素数が嫌い!2
ユーザー 👑 obakyanobakyan
提出日時 2019-04-28 23:25:43
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 4,642 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-01 08:24:59
合計ジャッジ時間 25,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 859 ms
6,940 KB
testcase_05 AC 4,448 ms
6,940 KB
testcase_06 AC 4,634 ms
6,944 KB
testcase_07 AC 4,642 ms
6,940 KB
testcase_08 AC 61 ms
6,940 KB
testcase_09 AC 99 ms
6,940 KB
testcase_10 AC 4,616 ms
6,940 KB
testcase_11 AC 1,374 ms
6,944 KB
testcase_12 AC 3,076 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, k = io.read("*n", "*n")
local cnt = 0
for a = 2, n do
  local lim = math.ceil(math.sqrt(a))
  local ta = a
  local denom = 2
  local c = 0
  while(denom <= lim) do
    if(ta % denom == 0) then
      c = c + 1
      if(k <= c) then break end
      while(ta % denom == 0) do
        ta = ta / denom
      end
    end
    denom = denom + (denom == 2 and 1 or 2)
  end
  if(ta ~= 1) then c = c + 1 end
  if(k <= c) then cnt = cnt + 1 end
end
print(cnt)
0