結果

問題 No.1594 Three Classes
ユーザー kamomekamome
提出日時 2021-07-09 21:36:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 936 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-04-28 00:03:13
合計ジャッジ時間 9,797 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 900 ms
75,648 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 32 ms
51,840 KB
testcase_03 AC 60 ms
67,712 KB
testcase_04 AC 907 ms
75,904 KB
testcase_05 AC 897 ms
76,160 KB
testcase_06 AC 62 ms
67,840 KB
testcase_07 AC 74 ms
73,600 KB
testcase_08 AC 936 ms
75,520 KB
testcase_09 AC 913 ms
75,776 KB
testcase_10 AC 903 ms
75,904 KB
testcase_11 AC 927 ms
75,648 KB
testcase_12 AC 916 ms
75,648 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 148 ms
75,904 KB
testcase_15 AC 114 ms
75,904 KB
testcase_16 AC 81 ms
75,520 KB
testcase_17 AC 73 ms
72,576 KB
testcase_18 AC 34 ms
51,968 KB
testcase_19 AC 50 ms
63,488 KB
testcase_20 AC 47 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
E = list(map(int, input().split()))

for bit in range(1 << (2*N)):
    A = 0
    B = 0
    C = 0
    for i in range(N):
        a = (bit >> (2*i)) & 1
        b = (bit >> (2*i+1)) & 1
        if a and b:
            break
        if not a and not b:
            A += E[i]
        elif not a and b:
            B += E[i]
        elif a and not b:
            C += E[i]
    else:
        if A == B == C:
            print("Yes")
            exit(0)

print("No")
0