結果

問題 No.3035 2018
ユーザー cielciel
提出日時 2019-03-20 11:18:18
言語 Crystal
(1.11.2)
結果
AC  
実行時間 739 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 11,972 ms
コンパイル使用メモリ 296,876 KB
実行使用メモリ 37,452 KB
最終ジャッジ日時 2024-06-30 19:47:59
合計ジャッジ時間 19,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 704 ms
37,452 KB
testcase_01 AC 652 ms
35,872 KB
testcase_02 AC 632 ms
36,944 KB
testcase_03 AC 735 ms
35,984 KB
testcase_04 AC 739 ms
36,968 KB
testcase_05 AC 650 ms
36,028 KB
testcase_06 AC 650 ms
36,496 KB
testcase_07 AC 702 ms
36,916 KB
testcase_08 AC 657 ms
36,684 KB
testcase_09 AC 636 ms
37,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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