結果

問題 No.1594 Three Classes
ユーザー trineutrontrineutron
提出日時 2021-07-09 21:30:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,617 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-16 07:30:47
合計ジャッジ時間 16,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,507 ms
10,624 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 94 ms
10,624 KB
testcase_04 AC 1,591 ms
10,496 KB
testcase_05 AC 1,583 ms
10,496 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 63 ms
10,496 KB
testcase_08 AC 1,583 ms
10,496 KB
testcase_09 AC 1,558 ms
10,496 KB
testcase_10 AC 1,572 ms
10,752 KB
testcase_11 AC 1,603 ms
10,496 KB
testcase_12 AC 1,617 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 239 ms
10,752 KB
testcase_15 AC 212 ms
10,752 KB
testcase_16 AC 111 ms
10,624 KB
testcase_17 AC 89 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 36 ms
10,624 KB
testcase_20 AC 40 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

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

for g in product(range(3), repeat=n):
    p = [0] * 3
    for i in range(n):
        p[g[i]] += e[i]
    if p[0] == p[1] and p[1] == p[2]:
        print('Yes')
        exit()
print('No')
0