結果

問題 No.1586 Equal Array
ユーザー 小野寺健小野寺健
提出日時 2021-11-12 21:09:28
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-05-04 04:28:45
合計ジャッジ時間 3,958 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,160 KB
testcase_01 AC 71 ms
12,160 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 109 ms
18,688 KB
testcase_05 AC 111 ms
18,560 KB
testcase_06 AC 109 ms
19,328 KB
testcase_07 AC 108 ms
19,456 KB
testcase_08 AC 108 ms
19,328 KB
testcase_09 AC 110 ms
19,328 KB
testcase_10 AC 116 ms
19,328 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 73 ms
12,160 KB
testcase_18 AC 118 ms
19,584 KB
testcase_19 AC 118 ms
19,584 KB
testcase_20 AC 73 ms
12,416 KB
testcase_21 AC 73 ms
12,160 KB
testcase_22 AC 72 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i

A = gets.split(" ").map{|s| s.to_i}

if A.sum % N != 0
	ans = "No"
else
	ans = "Yes"
	0.upto(N-2) {|i|
		if A[i] > A[i+1] then
			ans = "No"
			break
		end
	}
end

puts ans
0