結果

問題 No.1594 Three Classes
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-11 18:29:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-11-16 08:28:40
合計ジャッジ時間 7,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 596 ms
76,928 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 100 ms
76,688 KB
testcase_04 AC 599 ms
76,360 KB
testcase_05 AC 577 ms
76,432 KB
testcase_06 AC 54 ms
63,872 KB
testcase_07 AC 88 ms
76,260 KB
testcase_08 AC 637 ms
76,288 KB
testcase_09 AC 627 ms
76,416 KB
testcase_10 AC 597 ms
76,672 KB
testcase_11 AC 615 ms
76,288 KB
testcase_12 AC 587 ms
76,368 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 145 ms
76,288 KB
testcase_15 AC 135 ms
76,148 KB
testcase_16 AC 96 ms
76,240 KB
testcase_17 AC 94 ms
76,052 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 91 ms
76,320 KB
testcase_20 AC 81 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Base_10_to_n(X, n):
    X_dumy = X
    out = ''
    while X_dumy>0:
        out = str(X_dumy%n)+out
        X_dumy = int(X_dumy/n)
    return out
n = int(input())
e = list(map(int, input().split()))
ans = 0
for b in range(3 ** n):
    s = Base_10_to_n(b, 3).zfill(n)
    l1, l2, l3 = [], [], []
    for i in range(n):
        if s[i] == "0":
            l1.append(e[i])
        elif s[i] == "1":
            l2.append(e[i])
        else:
            l3.append(e[i])
    if sum(l1) == sum(l2) == sum(l3):
        exit(print("Yes"))
print("No")
0