結果

問題 No.1594 Three Classes
ユーザー somey-svsomey-sv
提出日時 2021-07-10 01:17:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-11-16 08:23:45
合計ジャッジ時間 2,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
75,904 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 59 ms
65,408 KB
testcase_04 AC 123 ms
76,160 KB
testcase_05 AC 123 ms
75,904 KB
testcase_06 AC 62 ms
65,280 KB
testcase_07 AC 61 ms
65,152 KB
testcase_08 AC 129 ms
75,776 KB
testcase_09 AC 129 ms
75,776 KB
testcase_10 AC 125 ms
75,904 KB
testcase_11 AC 128 ms
76,160 KB
testcase_12 AC 126 ms
76,032 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 94 ms
75,904 KB
testcase_15 AC 55 ms
63,232 KB
testcase_16 AC 62 ms
65,536 KB
testcase_17 AC 52 ms
62,464 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 50 ms
61,568 KB
testcase_20 AC 55 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ALL1 = 1 << N

for i in range(ALL1):
    E1 = 0
    rest = []
    for j in range(N):
        if i & 1 << j:
            E1 += E[j]
        else:
            rest.append(j)
    
    ALL2 = 1 << len(rest)

    for i2 in range(ALL2):
        E2 = 0
        E3 = 0
        for j2 in range(len(rest)):
            if i2 & 1 << j2:
                E2 += E[rest[j2]]
            else:
                E3 += E[rest[j2]]
                
        if E1 == E2 == E3:
            print("Yes")
            exit()

        
print("No")
0