結果

問題 No.1594 Three Classes
ユーザー noriocnorioc
提出日時 2021-07-10 05:01:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 411 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-02 00:32:05
合計ジャッジ時間 21,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 70 ms
10,752 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 67 ms
10,496 KB
testcase_07 AC 115 ms
10,752 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 461 ms
10,624 KB
testcase_15 AC 273 ms
10,624 KB
testcase_16 AC 147 ms
10,624 KB
testcase_17 AC 107 ms
10,752 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 36 ms
10,624 KB
testcase_20 AC 44 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bits(p, n):
    a = [0] * n
    for i in range(pow(p, n)):
        x = i
        for j in range(n):
            a[j] = x % p
            x //= p
        yield a

input()
a = list(map(int, input().split()))

ok = False
for es in bits(3, len(a)):
    b = [0, 0, 0]
    for i in range(len(a)):
        b[es[i]] += a[i]
    if b[0] == b[1] == b[2]:
        ok = True
        break

print('Yes' if ok else 'No')
0