結果

問題 No.3035 2018
ユーザー cielciel
提出日時 2019-03-20 11:15:01
言語 Crystal
(1.11.2)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 11,581 ms
コンパイル使用メモリ 296,748 KB
実行使用メモリ 37,108 KB
最終ジャッジ日時 2024-06-30 19:45:31
合計ジャッジ時間 20,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 739 ms
35,680 KB
testcase_01 AC 723 ms
36,948 KB
testcase_02 AC 721 ms
36,584 KB
testcase_03 AC 756 ms
37,108 KB
testcase_04 AC 690 ms
36,652 KB
testcase_05 AC 715 ms
35,904 KB
testcase_06 AC 721 ms
36,512 KB
testcase_07 AC 715 ms
35,912 KB
testcase_08 AC 698 ms
36,864 KB
testcase_09 AC 783 ms
36,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=5111443
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