結果

問題 No.1594 Three Classes
ユーザー NSNS
提出日時 2021-07-10 12:05:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 157,112 KB
最終ジャッジ日時 2024-11-16 08:26:14
合計ジャッジ時間 5,185 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
156,848 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 215 ms
156,740 KB
testcase_04 AC 299 ms
156,736 KB
testcase_05 AC 293 ms
157,084 KB
testcase_06 AC 204 ms
156,740 KB
testcase_07 AC 212 ms
157,112 KB
testcase_08 AC 286 ms
156,608 KB
testcase_09 AC 278 ms
156,868 KB
testcase_10 AC 283 ms
156,732 KB
testcase_11 AC 286 ms
156,736 KB
testcase_12 AC 278 ms
156,604 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 212 ms
156,736 KB
testcase_15 AC 214 ms
156,868 KB
testcase_16 AC 98 ms
100,096 KB
testcase_17 AC 195 ms
156,728 KB
testcase_18 AC 36 ms
51,968 KB
testcase_19 AC 44 ms
60,416 KB
testcase_20 AC 52 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
al=list(map(int, input().split()))

from itertools import product
ite = list(product(range(3),repeat=n))
for pattern in ite:
    bl=[0]*3
    for i, v in enumerate(pattern):
        bl[v]+=al[i]
    bl.sort()
    if bl[0]==bl[2]:
        print('Yes')
        exit()
print('No')
0