結果

問題 No.944 煎っぞ!
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-12-11 00:46:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 522 ms / 3,000 ms
コード長 112 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-06-24 06:23:49
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
23,296 KB
testcase_01 AC 180 ms
23,552 KB
testcase_02 AC 190 ms
23,552 KB
testcase_03 AC 180 ms
23,296 KB
testcase_04 AC 180 ms
23,424 KB
testcase_05 AC 183 ms
23,296 KB
testcase_06 AC 179 ms
23,296 KB
testcase_07 AC 184 ms
23,296 KB
testcase_08 AC 178 ms
23,296 KB
testcase_09 AC 183 ms
23,296 KB
testcase_10 AC 89 ms
12,160 KB
testcase_11 AC 174 ms
14,208 KB
testcase_12 AC 132 ms
12,928 KB
testcase_13 AC 82 ms
12,160 KB
testcase_14 AC 171 ms
14,208 KB
testcase_15 AC 124 ms
12,800 KB
testcase_16 AC 85 ms
12,160 KB
testcase_17 AC 86 ms
12,288 KB
testcase_18 AC 174 ms
14,208 KB
testcase_19 AC 171 ms
14,208 KB
testcase_20 AC 520 ms
23,296 KB
testcase_21 AC 522 ms
23,296 KB
testcase_22 AC 167 ms
23,296 KB
testcase_23 AC 171 ms
23,296 KB
testcase_24 AC 173 ms
23,552 KB
testcase_25 AC 168 ms
23,424 KB
testcase_26 AC 169 ms
23,552 KB
testcase_27 AC 503 ms
22,912 KB
testcase_28 AC 86 ms
12,416 KB
testcase_29 AC 84 ms
12,160 KB
testcase_30 AC 519 ms
23,424 KB
testcase_31 AC 188 ms
23,296 KB
testcase_32 AC 161 ms
23,296 KB
testcase_33 AC 275 ms
23,424 KB
testcase_34 AC 279 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n=gets.to_i
s=z=0
f={}
gets.split.each{|a|f[s+=a.to_i]=1}
1.upto(s){|r|s%r<1&&(1..r).all?{|j|f[s/r*j]}&&z=r}
p z
0