結果

問題 No.1594 Three Classes
ユーザー 大橋佐和大橋佐和
提出日時 2022-05-06 21:20:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-07-05 22:19:52
合計ジャッジ時間 3,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
75,392 KB
testcase_01 WA -
testcase_02 AC 44 ms
51,456 KB
testcase_03 AC 60 ms
62,464 KB
testcase_04 AC 137 ms
75,392 KB
testcase_05 AC 134 ms
75,904 KB
testcase_06 AC 58 ms
62,208 KB
testcase_07 AC 57 ms
61,952 KB
testcase_08 AC 132 ms
75,520 KB
testcase_09 AC 131 ms
75,520 KB
testcase_10 AC 135 ms
75,392 KB
testcase_11 AC 132 ms
75,392 KB
testcase_12 AC 133 ms
75,136 KB
testcase_13 AC 40 ms
51,456 KB
testcase_14 AC 88 ms
71,296 KB
testcase_15 AC 50 ms
60,544 KB
testcase_16 AC 70 ms
67,456 KB
testcase_17 AC 49 ms
59,904 KB
testcase_18 AC 40 ms
51,200 KB
testcase_19 AC 50 ms
59,904 KB
testcase_20 AC 49 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
e = list(map(int, input().split()))
total_e = sum(e)

answer = False
for in_A in range(1 << n):
    p_A = 0
    for j in range(n):
        if in_A >> j & 1:
            p_A += e[j]
    ex_A = (1 << n) - in_A
    in_B = ex_A
    while in_B > 0:
        p_B = 0
        for j in range(n):
            if in_B >> j & 1:
                p_B += e[j]
        p_C = total_e - p_A - p_B
        if p_A == p_B and p_B == p_C:
            answer = True
            break
        in_B -= 1
        in_B &= ex_A
    if answer:
        break

print("Yes" if answer else "No")
0