結果

問題 No.1594 Three Classes
ユーザー hir355hir355
提出日時 2021-07-09 21:26:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 76,056 KB
最終ジャッジ日時 2024-11-16 07:24:38
合計ジャッジ時間 2,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
75,816 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 56 ms
65,536 KB
testcase_04 AC 125 ms
75,940 KB
testcase_05 AC 120 ms
76,056 KB
testcase_06 AC 62 ms
65,280 KB
testcase_07 AC 62 ms
65,024 KB
testcase_08 AC 126 ms
76,032 KB
testcase_09 AC 124 ms
76,032 KB
testcase_10 AC 126 ms
75,712 KB
testcase_11 AC 124 ms
75,880 KB
testcase_12 AC 125 ms
75,520 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 92 ms
75,608 KB
testcase_15 AC 55 ms
63,360 KB
testcase_16 AC 60 ms
65,536 KB
testcase_17 AC 52 ms
62,976 KB
testcase_18 AC 37 ms
52,096 KB
testcase_19 AC 48 ms
61,568 KB
testcase_20 AC 53 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
e = list(map(int, input().split()))
for i in range(1 << n):
    a = 0
    t = []
    for j in range(n):
        if (i >> j) & 1:
            a += e[j]
        else:
            t.append(j)
    for j in range(1 << len(t)):
        b, c = 0, 0
        for k in range(len(t)):
            if (j >> k) & 1:
                b += e[t[k]]
            else:
                c += e[t[k]]
        if a == b == c:
            print('Yes')
            exit(0)
else:
    print('No')
0