結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 784 ms
35,900 KB
testcase_01 AC 768 ms
35,852 KB
testcase_02 AC 791 ms
35,904 KB
testcase_03 AC 741 ms
35,944 KB
testcase_04 AC 751 ms
35,892 KB
testcase_05 AC 742 ms
36,080 KB
testcase_06 AC 766 ms
37,052 KB
testcase_07 AC 754 ms
37,064 KB
testcase_08 AC 766 ms
35,948 KB
testcase_09 AC 776 ms
36,244 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