結果

問題 No.1594 Three Classes
ユーザー prd_xxxprd_xxx
提出日時 2021-07-09 21:35:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 60,032 KB
最終ジャッジ日時 2024-07-01 15:25:22
合計ジャッジ時間 1,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
59,904 KB
testcase_01 WA -
testcase_02 AC 40 ms
51,328 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 49 ms
59,648 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 WA -
testcase_09 AC 49 ms
59,648 KB
testcase_10 AC 49 ms
59,520 KB
testcase_11 AC 48 ms
59,392 KB
testcase_12 AC 48 ms
60,032 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 47 ms
59,264 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 46 ms
58,112 KB
testcase_17 AC 40 ms
51,328 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 41 ms
51,840 KB
testcase_20 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
E = list(map(int,input().split()))
se = sum(E)
s = se//3
if s*3 != se:
    print('No')
    exit()

for a in range(1,1<<N):
    t = 0
    for i in range(N):
        if a&(1<<i):
            t += E[i]
    if t != s: continue
    for b in range(1,1<<N):
        if a&b: continue
        if a|b == 1<<N - 1: continue
        tt = 0
        for i in range(N):
            if b&(1<<i):
                tt += E[i]
        if t==s:
            print('Yes')
            exit()
print('No')
0