結果

問題 No.1823 Tricolor Dango
ユーザー ID 21712ID 21712
提出日時 2024-12-09 09:44:03
言語 Go
(1.22.1)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 11,111 ms
コンパイル使用メモリ 240,460 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-12-09 09:44:18
合計ジャッジ時間 14,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 74 ms
5,248 KB
testcase_02 AC 73 ms
5,248 KB
testcase_03 AC 72 ms
5,248 KB
testcase_04 AC 48 ms
5,248 KB
testcase_05 AC 48 ms
5,248 KB
testcase_06 AC 48 ms
5,248 KB
testcase_07 AC 44 ms
5,248 KB
testcase_08 AC 41 ms
5,248 KB
testcase_09 AC 46 ms
5,248 KB
testcase_10 AC 43 ms
5,248 KB
testcase_11 AC 45 ms
5,248 KB
testcase_12 AC 36 ms
5,248 KB
testcase_13 AC 42 ms
5,248 KB
testcase_14 AC 44 ms
5,248 KB
testcase_15 AC 39 ms
5,248 KB
testcase_16 AC 16 ms
5,248 KB
testcase_17 AC 21 ms
5,248 KB
testcase_18 AC 41 ms
5,248 KB
testcase_19 AC 121 ms
5,760 KB
testcase_20 AC 41 ms
5,248 KB
testcase_21 AC 52 ms
5,248 KB
testcase_22 AC 65 ms
5,248 KB
testcase_23 AC 46 ms
5,248 KB
testcase_24 AC 52 ms
5,248 KB
testcase_25 AC 64 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var t int
	Fscan(rd,&t)
	for ;t>0;t-- {
		var n int
		Fscan(rd,&n)
		a:=make([]int64,n)
		s:=int64(0)
		for i:=range a {
			Fscan(rd,&a[i])
			s+=a[i]
		}
		ok:=s%3==0
		for _,v:=range a {
			ok=ok&&v<=s/3
		}
		if ok {
			Println("Yes")
		} else {
			Println("No")
		}
	}
}
0