結果

問題 No.1823 Tricolor Dango
ユーザー iii aaaiii aaa
提出日時 2022-01-29 21:21:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 101,980 KB
最終ジャッジ日時 2024-06-10 20:17:51
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,828 KB
testcase_01 AC 103 ms
79,448 KB
testcase_02 AC 103 ms
79,720 KB
testcase_03 AC 93 ms
80,096 KB
testcase_04 AC 66 ms
76,680 KB
testcase_05 AC 66 ms
76,568 KB
testcase_06 AC 67 ms
76,752 KB
testcase_07 AC 53 ms
75,944 KB
testcase_08 AC 55 ms
76,380 KB
testcase_09 AC 55 ms
75,948 KB
testcase_10 AC 55 ms
75,644 KB
testcase_11 AC 54 ms
75,576 KB
testcase_12 AC 53 ms
76,328 KB
testcase_13 AC 52 ms
76,780 KB
testcase_14 AC 56 ms
77,092 KB
testcase_15 AC 55 ms
76,852 KB
testcase_16 AC 46 ms
68,272 KB
testcase_17 AC 47 ms
68,244 KB
testcase_18 AC 55 ms
79,328 KB
testcase_19 AC 90 ms
101,980 KB
testcase_20 AC 55 ms
79,804 KB
testcase_21 AC 82 ms
77,272 KB
testcase_22 AC 94 ms
79,564 KB
testcase_23 AC 75 ms
77,000 KB
testcase_24 AC 82 ms
77,272 KB
testcase_25 AC 94 ms
79,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import heapq

def inputSynario():
    input = stdin.readline
    num_list = []
    T = int(input().rstrip())
    for i in range(T * 2):
        num_list.append(list(map(int, input().rstrip().split())))
    return num_list

synario = inputSynario()
for synarioId in range(len(synario)//2):
    N=synario[synarioId * 2]
    A=synario[synarioId * 2 + 1]
    dangoCountSum = sum(A)
    if(dangoCountSum % 3 == 0):
        kushiCount = dangoCountSum // 3
        if(max(A) <= kushiCount):
            print("Yes")
            continue
    print("No")
0