結果
問題 | No.451 575 |
ユーザー | miraxial |
提出日時 | 2016-12-02 22:36:51 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 321 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 43,480 KB |
最終ジャッジ日時 | 2024-05-09 19:02:15 |
合計ジャッジ時間 | 6,863 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
17,664 KB |
testcase_01 | AC | 74 ms
12,160 KB |
testcase_02 | AC | 69 ms
12,288 KB |
testcase_03 | AC | 70 ms
12,288 KB |
testcase_04 | AC | 74 ms
12,160 KB |
testcase_05 | AC | 442 ms
14,720 KB |
testcase_06 | AC | 1,364 ms
20,608 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
コンパイルメッセージ
Main.rb:22: warning: ambiguous first argument; put parentheses or a space even after `-' operator Syntax OK
ソースコード
n=gets.to_i a=[] n.times do |i| a<< gets.to_i end c=0 e=0 while true do b=[] b<< 1+c (n/2).times do |i| b<< a[i*2]-b[i*2] b<< b[i*2+1]-a[i*2+1] end (n%2).times do b<< a[-1]-b[-1] end if b.all?{|i|i>0} puts n+1,b.*("\n") break elsif e==100 p -1 break end c=0 n.times do |i| c+=b[i] if 1>b[i] end e+=1 end