結果

問題 No.3035 2018
ユーザー cielciel
提出日時 2020-02-08 22:11:35
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,091 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 10,484 ms
コンパイル使用メモリ 297,096 KB
実行使用メモリ 48,008 KB
最終ジャッジ日時 2024-06-30 19:59:10
合計ジャッジ時間 22,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 866 ms
47,140 KB
testcase_01 AC 1,018 ms
47,152 KB
testcase_02 AC 982 ms
46,404 KB
testcase_03 AC 1,055 ms
46,492 KB
testcase_04 AC 1,050 ms
47,304 KB
testcase_05 AC 1,046 ms
47,544 KB
testcase_06 AC 1,005 ms
46,228 KB
testcase_07 AC 1,038 ms
46,636 KB
testcase_08 AC 1,077 ms
46,984 KB
testcase_09 AC 1,091 ms
48,008 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