結果

問題 No.3079 アルベド
ユーザー 👑 obakyanobakyan
提出日時 2022-04-16 21:52:32
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 16:44:23
合計ジャッジ時間 1,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 29 ms
5,376 KB
testcase_02 AC 19 ms
5,376 KB
testcase_03 AC 14 ms
5,376 KB
testcase_04 AC 23 ms
5,376 KB
testcase_05 AC 18 ms
5,376 KB
testcase_06 AC 22 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local t = {}
for i = 1, 100000 do
  t[i] = true
end
t[1] = false
for i = 2, 100000 do
  if t[i] then
    local d = i + i
    while d <= 100000 do
      t[d] = false
      d = d + i
    end
  end
end
t[1] = 0
for i = 2, 100000 do
  if t[i] then
    t[i] = t[i - 1] + 1
  else
    t[i] = t[i - 1]
  end
end
local q = io.read("*n")
for iq = 1, q do
  print(t[io.read("*n")])
end
0