結果

問題 No.1823 Tricolor Dango
ユーザー praypray
提出日時 2022-01-29 09:56:48
言語 Go
(1.22.1)
結果
AC  
実行時間 1,833 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 10,225 ms
コンパイル使用メモリ 235,716 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-10 07:33:29
合計ジャッジ時間 27,708 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 717 ms
6,272 KB
testcase_02 AC 698 ms
6,272 KB
testcase_03 AC 705 ms
6,272 KB
testcase_04 AC 583 ms
6,144 KB
testcase_05 AC 583 ms
6,144 KB
testcase_06 AC 583 ms
6,144 KB
testcase_07 AC 544 ms
5,888 KB
testcase_08 AC 515 ms
5,888 KB
testcase_09 AC 569 ms
6,016 KB
testcase_10 AC 585 ms
6,016 KB
testcase_11 AC 629 ms
6,016 KB
testcase_12 AC 478 ms
6,016 KB
testcase_13 AC 540 ms
6,016 KB
testcase_14 AC 658 ms
6,016 KB
testcase_15 AC 534 ms
6,016 KB
testcase_16 AC 188 ms
5,376 KB
testcase_17 AC 344 ms
5,376 KB
testcase_18 AC 599 ms
6,016 KB
testcase_19 AC 1,833 ms
6,272 KB
testcase_20 AC 586 ms
6,016 KB
testcase_21 AC 621 ms
6,400 KB
testcase_22 AC 690 ms
6,272 KB
testcase_23 AC 592 ms
6,272 KB
testcase_24 AC 626 ms
6,400 KB
testcase_25 AC 667 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func max(a, b int) int {
	if a < b {
		return b
	}
	return a
}

func main() {
	var T int
	fmt.Scan(&T)
	for i := 0; i < T; i++ {
		var N int
		fmt.Scan(&N)
		A := make([]int, N)
		maxA := 0
		sum := 0
		for i := 0; i < N; i++ {
			fmt.Scan(&A[i])
			sum += A[i]
			maxA = max(maxA, A[i])
		}
		if sum%3 != 0 || sum/3 < maxA {
			fmt.Println("No")
			continue
		}
		fmt.Println("Yes")
	}
}
0