結果

問題 No.1823 Tricolor Dango
ユーザー horiesinitihoriesiniti
提出日時 2023-07-04 09:25:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-07-18 05:52:25
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,288 KB
testcase_01 AC 149 ms
12,800 KB
testcase_02 AC 139 ms
12,672 KB
testcase_03 AC 139 ms
12,672 KB
testcase_04 AC 120 ms
13,312 KB
testcase_05 AC 122 ms
13,312 KB
testcase_06 AC 119 ms
13,440 KB
testcase_07 AC 118 ms
13,056 KB
testcase_08 AC 114 ms
13,184 KB
testcase_09 AC 121 ms
13,056 KB
testcase_10 AC 116 ms
12,928 KB
testcase_11 AC 115 ms
13,056 KB
testcase_12 AC 110 ms
13,184 KB
testcase_13 AC 119 ms
14,208 KB
testcase_14 AC 119 ms
16,256 KB
testcase_15 AC 119 ms
14,592 KB
testcase_16 AC 96 ms
15,360 KB
testcase_17 AC 99 ms
14,848 KB
testcase_18 AC 129 ms
19,584 KB
testcase_19 AC 202 ms
29,184 KB
testcase_20 AC 130 ms
19,328 KB
testcase_21 AC 129 ms
13,440 KB
testcase_22 AC 138 ms
12,672 KB
testcase_23 AC 121 ms
13,440 KB
testcase_24 AC 130 ms
13,312 KB
testcase_25 AC 147 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def f()
n=gets.to_i
xs=gets.split(" ").map{|e| e.to_i}.sort.reverse
s3=xs.sum
return "No" if s3%3!=0
s2=s3/3*2
s1=s3/3
sum1=0

xs.each{|x|
	m1=s1
	if sum1>=s2 then
		m1=s3-sum1
	end
	return "No" if m1<x
	sum1+=x
}
return "Yes"
end
t=gets.to_i
t.times{
	puts f()
}
0