結果

問題 No.2343 (l+r)/2
ユーザー maguroflymagurofly
提出日時 2023-06-09 22:13:37
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 8,192 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2025-01-02 03:21:28
合計ジャッジ時間 3,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,672 KB
testcase_01 AC 662 ms
25,984 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 133 ms
18,176 KB
testcase_05 AC 106 ms
14,848 KB
testcase_06 AC 104 ms
14,592 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 151 ms
19,456 KB
testcase_12 WA -
testcase_13 AC 114 ms
16,128 KB
testcase_14 AC 162 ms
20,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

T = gets.to_i
ans = []
T.times do
	n = gets.to_i
	a = gets.split.map { |e| e.to_i }
	ones = 0
	zeros = 0
	prev = 1
	a.each do |x|
		if x == 0
			zeros += 1 if prev != 0
		else
			ones += 1 
		end
		prev = x
	end
	ans << (zeros <= ones && zeros != 0 ? "Yes" : "No")
end
puts ans.join("\n")
0