結果

問題 No.2343 (l+r)/2
ユーザー maguroflymagurofly
提出日時 2023-06-09 22:13:37
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-06-10 13:27:26
合計ジャッジ時間 3,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,160 KB
testcase_01 AC 475 ms
27,776 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 111 ms
17,664 KB
testcase_05 AC 90 ms
13,696 KB
testcase_06 AC 88 ms
13,184 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 122 ms
18,944 KB
testcase_12 WA -
testcase_13 AC 98 ms
15,360 KB
testcase_14 AC 131 ms
20,352 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