結果

問題 No.1823 Tricolor Dango
ユーザー stngstng
提出日時 2022-05-14 16:00:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 94,676 KB
最終ジャッジ日時 2024-07-23 01:41:36
合計ジャッジ時間 5,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,428 KB
testcase_01 AC 208 ms
78,004 KB
testcase_02 AC 157 ms
77,536 KB
testcase_03 AC 161 ms
77,504 KB
testcase_04 AC 99 ms
76,724 KB
testcase_05 AC 100 ms
76,504 KB
testcase_06 AC 102 ms
76,424 KB
testcase_07 AC 64 ms
75,592 KB
testcase_08 AC 63 ms
76,160 KB
testcase_09 AC 61 ms
75,332 KB
testcase_10 AC 63 ms
75,348 KB
testcase_11 AC 60 ms
75,120 KB
testcase_12 AC 64 ms
75,372 KB
testcase_13 AC 62 ms
76,876 KB
testcase_14 AC 61 ms
76,256 KB
testcase_15 AC 56 ms
73,976 KB
testcase_16 AC 49 ms
65,764 KB
testcase_17 AC 51 ms
65,876 KB
testcase_18 AC 56 ms
73,904 KB
testcase_19 AC 78 ms
94,676 KB
testcase_20 AC 56 ms
72,068 KB
testcase_21 AC 144 ms
77,180 KB
testcase_22 AC 153 ms
77,448 KB
testcase_23 AC 126 ms
78,340 KB
testcase_24 AC 136 ms
77,452 KB
testcase_25 AC 160 ms
77,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for i in range(t):
    n = int(input())
    a = [int(i) for i in input().split()]

    sa = sum(a)
    if sa % 3 != 0:
        print("No")
        continue
    dnum = sa // 3
    if max(a) > dnum:
        print("No")
    else:
        print("Yes")
0