結果

問題 No.1160 Strange Bowling
ユーザー 小野寺健小野寺健
提出日時 2021-11-02 16:43:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-10-11 21:22:01
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 AC 80 ms
12,032 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 84 ms
12,160 KB
testcase_05 AC 81 ms
12,160 KB
testcase_06 AC 82 ms
12,032 KB
testcase_07 AC 81 ms
12,160 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 251 ms
23,424 KB
testcase_11 AC 177 ms
18,048 KB
testcase_12 AC 129 ms
14,720 KB
testcase_13 AC 105 ms
13,184 KB
testcase_14 AC 239 ms
22,400 KB
testcase_15 AC 118 ms
14,208 KB
testcase_16 AC 129 ms
15,104 KB
testcase_17 AC 216 ms
21,888 KB
testcase_18 AC 174 ms
18,688 KB
testcase_19 AC 149 ms
16,384 KB
testcase_20 AC 201 ms
20,352 KB
testcase_21 AC 175 ms
18,176 KB
testcase_22 AC 111 ms
13,824 KB
testcase_23 AC 114 ms
13,568 KB
testcase_24 AC 107 ms
13,568 KB
testcase_25 AC 154 ms
16,896 KB
testcase_26 AC 119 ms
14,208 KB
testcase_27 AC 200 ms
19,712 KB
testcase_28 AC 127 ms
14,336 KB
testcase_29 AC 248 ms
22,400 KB
testcase_30 AC 319 ms
28,672 KB
testcase_31 AC 215 ms
20,608 KB
testcase_32 AC 121 ms
14,336 KB
testcase_33 AC 170 ms
18,176 KB
testcase_34 AC 168 ms
17,920 KB
testcase_35 AC 282 ms
26,240 KB
testcase_36 AC 82 ms
12,288 KB
testcase_37 AC 83 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: assigned but unused variable - a
Syntax OK

ソースコード

diff #

N = gets.to_i

pa = []

N.times {
	pa.unshift(gets.split(" ").map{|s| s.to_i})
}

p, a = pa.shift

pn = [[p, p]]
sn = [[p, p]]

pa.each {|p, a|
	np, na = pn[-1]
	sp, sa = sn[-1]
	ca = [np + a + sp, na + a + sa].max
	cp = [p + sp, p + sa].max
	pn << [p, a]
	sn << [cp, ca]
}

puts sn[-1].max
0