結果

問題 No.3079 アルベド
ユーザー kakel-sankakel-san
提出日時 2024-01-26 17:24:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-28 07:31:26
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
13,056 KB
testcase_01 AC 290 ms
12,928 KB
testcase_02 AC 239 ms
12,928 KB
testcase_03 AC 215 ms
13,056 KB
testcase_04 AC 263 ms
12,928 KB
testcase_05 AC 237 ms
13,056 KB
testcase_06 AC 249 ms
12,800 KB
testcase_07 AC 180 ms
12,928 KB
testcase_08 AC 187 ms
12,928 KB
testcase_09 AC 229 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

num = []
100001.times{ num.push 1 }
100001.times{|i|
  if i < 2
    num[i] = 0
  else
    j = i * 2
    while j < num.length
      num[j] = 0
      j += i
    end
  end
}
100000.times{|i|
  num[i + 1] += num[i]
}
t = readline.to_i
t.times{
  n = readline.to_i
  puts num[n]
}
0