結果

問題 No.1594 Three Classes
ユーザー PSL24251284PSL24251284
提出日時 2021-07-10 18:14:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-11-16 08:27:31
合計ジャッジ時間 2,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
75,648 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 43 ms
60,544 KB
testcase_04 AC 92 ms
75,520 KB
testcase_05 AC 93 ms
75,648 KB
testcase_06 AC 44 ms
60,416 KB
testcase_07 AC 46 ms
62,592 KB
testcase_08 AC 93 ms
75,392 KB
testcase_09 AC 97 ms
75,520 KB
testcase_10 AC 96 ms
75,520 KB
testcase_11 AC 94 ms
75,648 KB
testcase_12 AC 93 ms
75,776 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 60 ms
73,344 KB
testcase_15 AC 52 ms
67,200 KB
testcase_16 AC 49 ms
62,848 KB
testcase_17 AC 46 ms
61,696 KB
testcase_18 AC 36 ms
51,712 KB
testcase_19 AC 43 ms
59,008 KB
testcase_20 AC 45 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int,input().split()))
for bit in range(3**N):
    x = bit
    l = [0,0,0]
    for i in range(N):
        l[x%3] += a[i]
        x //= 3
    if l[0] == l[1] == l[2]:
        print("Yes")
        exit()
print("No")
0