結果

問題 No.1594 Three Classes
ユーザー IgrmiIgrmi
提出日時 2021-07-09 21:47:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,032 KB
最終ジャッジ日時 2024-11-16 07:39:52
合計ジャッジ時間 2,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
59,520 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 51 ms
59,648 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 52 ms
59,648 KB
testcase_06 AC 52 ms
60,032 KB
testcase_07 AC 55 ms
59,648 KB
testcase_08 AC 55 ms
59,904 KB
testcase_09 AC 51 ms
59,776 KB
testcase_10 AC 52 ms
59,648 KB
testcase_11 AC 52 ms
59,520 KB
testcase_12 AC 51 ms
59,904 KB
testcase_13 AC 46 ms
51,968 KB
testcase_14 AC 53 ms
59,520 KB
testcase_15 AC 51 ms
60,032 KB
testcase_16 AC 51 ms
59,648 KB
testcase_17 AC 50 ms
59,648 KB
testcase_18 AC 45 ms
51,712 KB
testcase_19 AC 43 ms
51,840 KB
testcase_20 AC 51 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
E = list(map(int, input().split()))
P = sum(E)
if P % 3:
    print('No')
    exit()
P //= 3
Group = []
GroupSet = set()
for i in range(1 << N):
    p = 0
    for j in range(N):
        if i >> j & 1: p += E[j]
    if p == P:
        Group.append(i)
        GroupSet.add(i)
All = (1 << N) - 1
for i in range(len(Group)):
    for j in range(i):
        if Group[i] & Group[j] == 0 and All - Group[i] - Group[j] in GroupSet:
            print('Yes')
            exit()
print('No')
0