結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
24,320 KB
testcase_01 AC 201 ms
24,192 KB
testcase_02 AC 204 ms
24,064 KB
testcase_03 AC 201 ms
24,192 KB
testcase_04 AC 201 ms
24,064 KB
testcase_05 AC 203 ms
24,064 KB
testcase_06 AC 201 ms
24,064 KB
testcase_07 AC 201 ms
24,192 KB
testcase_08 AC 203 ms
24,064 KB
testcase_09 AC 200 ms
24,064 KB
testcase_10 AC 98 ms
12,160 KB
testcase_11 AC 185 ms
14,336 KB
testcase_12 AC 143 ms
13,184 KB
testcase_13 AC 93 ms
12,160 KB
testcase_14 AC 182 ms
14,208 KB
testcase_15 AC 137 ms
12,928 KB
testcase_16 AC 94 ms
12,160 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 AC 182 ms
14,336 KB
testcase_19 AC 185 ms
14,336 KB
testcase_20 AC 548 ms
24,064 KB
testcase_21 AC 538 ms
24,064 KB
testcase_22 AC 188 ms
24,064 KB
testcase_23 AC 185 ms
24,192 KB
testcase_24 AC 185 ms
24,064 KB
testcase_25 AC 180 ms
24,064 KB
testcase_26 AC 184 ms
24,192 KB
testcase_27 AC 505 ms
23,552 KB
testcase_28 AC 87 ms
12,160 KB
testcase_29 AC 87 ms
12,160 KB
testcase_30 AC 541 ms
24,064 KB
testcase_31 AC 204 ms
24,064 KB
testcase_32 AC 173 ms
24,192 KB
testcase_33 AC 289 ms
23,936 KB
testcase_34 AC 281 ms
24,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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