結果

問題 No.1594 Three Classes
ユーザー shinichishinichi
提出日時 2021-07-09 22:00:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-07-01 16:22:46
合計ジャッジ時間 2,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
71,296 KB
testcase_01 WA -
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 50 ms
62,848 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 57 ms
70,784 KB
testcase_06 AC 42 ms
57,744 KB
testcase_07 AC 52 ms
62,848 KB
testcase_08 WA -
testcase_09 AC 58 ms
71,168 KB
testcase_10 AC 57 ms
70,912 KB
testcase_11 AC 58 ms
70,784 KB
testcase_12 AC 56 ms
70,784 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 62 ms
68,096 KB
testcase_15 AC 86 ms
67,840 KB
testcase_16 AC 57 ms
64,776 KB
testcase_17 AC 84 ms
67,916 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 43 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, sys

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

if sum(E) % 3:
    print('No')
    sys.exit()



for bit in range(2**N):
    A, B, C = [], [], []
    rest = []
    for i in range(N):
        if (bit >> i) & 1:
            A.append(E[i])
        else:
            rest.append(E[i])
    if sum(A) == sum(E) // 3:
        for bit in range(2**len(rest)):
            for j in range(len(rest)):
                if (bit >> j) & 1:
                    B.append(rest[j])
                else:
                    C.append(rest[j])
            if sum(B) == sum(C):
                print('Yes')
                sys.exit()
print('No')



0