結果

問題 No.8035 2018
ユーザー cielciel
提出日時 2018-04-03 09:11:10
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,254 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 11,119 ms
コンパイル使用メモリ 296,496 KB
実行使用メモリ 47,684 KB
最終ジャッジ日時 2024-06-30 19:29:17
合計ジャッジ時間 25,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,236 ms
46,500 KB
testcase_01 AC 1,194 ms
46,348 KB
testcase_02 AC 1,254 ms
47,684 KB
testcase_03 AC 1,191 ms
46,388 KB
testcase_04 AC 1,238 ms
46,380 KB
testcase_05 AC 1,233 ms
47,148 KB
testcase_06 AC 1,235 ms
46,440 KB
testcase_07 AC 1,232 ms
46,876 KB
testcase_08 AC 1,243 ms
46,816 KB
testcase_09 AC 1,242 ms
47,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=14**6
a=[0]*-~M
(1..M).map{|i|(1..M/i).each{|j|a[i*j]+=1}}
a=(1..M).select{|i|a[i]==4}
p a[gets.not_nil!.to_i-1]
0