結果

問題 No.1823 Tricolor Dango
ユーザー gr1msl3ygr1msl3y
提出日時 2022-01-28 21:45:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 102,276 KB
最終ジャッジ日時 2024-06-09 14:46:54
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,520 KB
testcase_01 AC 108 ms
77,000 KB
testcase_02 AC 114 ms
77,148 KB
testcase_03 AC 114 ms
76,932 KB
testcase_04 AC 77 ms
76,040 KB
testcase_05 AC 88 ms
76,088 KB
testcase_06 AC 88 ms
76,044 KB
testcase_07 AC 54 ms
75,524 KB
testcase_08 AC 52 ms
75,312 KB
testcase_09 AC 55 ms
75,588 KB
testcase_10 AC 53 ms
75,828 KB
testcase_11 AC 52 ms
75,180 KB
testcase_12 AC 50 ms
75,496 KB
testcase_13 AC 49 ms
76,824 KB
testcase_14 AC 49 ms
76,116 KB
testcase_15 AC 47 ms
76,492 KB
testcase_16 AC 40 ms
67,256 KB
testcase_17 AC 46 ms
68,728 KB
testcase_18 AC 53 ms
79,468 KB
testcase_19 AC 85 ms
102,276 KB
testcase_20 AC 49 ms
78,472 KB
testcase_21 AC 105 ms
76,960 KB
testcase_22 AC 112 ms
77,080 KB
testcase_23 AC 96 ms
77,052 KB
testcase_24 AC 98 ms
77,036 KB
testcase_25 AC 105 ms
77,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    T = int(input())
    ans = [None]*T
    for i in range(T):
        N = int(input())
        A = list(map(int, input().split()))
        ans[i] = 'Yes' if solve(N, A) else 'No'
    print(*ans, sep='\n')


def solve(N, A):
    S = sum(A)
    if S % 3:
        return False
    for a in A:
        if a > S//3:
            return False
    else:
        return True


main()
0