結果

問題 No.1594 Three Classes
ユーザー RuteRute
提出日時 2021-07-09 21:41:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 802 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 77,408 KB
最終ジャッジ日時 2024-11-16 07:38:09
合計ジャッジ時間 11,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 610 ms
76,688 KB
testcase_01 AC 45 ms
52,096 KB
testcase_02 AC 45 ms
51,840 KB
testcase_03 AC 802 ms
77,080 KB
testcase_04 AC 594 ms
76,672 KB
testcase_05 AC 603 ms
76,800 KB
testcase_06 AC 598 ms
76,864 KB
testcase_07 AC 564 ms
77,200 KB
testcase_08 AC 601 ms
76,688 KB
testcase_09 AC 593 ms
76,672 KB
testcase_10 AC 601 ms
76,928 KB
testcase_11 AC 600 ms
76,672 KB
testcase_12 AC 601 ms
76,800 KB
testcase_13 AC 70 ms
67,584 KB
testcase_14 AC 598 ms
76,804 KB
testcase_15 AC 576 ms
76,816 KB
testcase_16 AC 292 ms
77,124 KB
testcase_17 AC 761 ms
76,940 KB
testcase_18 AC 55 ms
61,312 KB
testcase_19 AC 98 ms
76,544 KB
testcase_20 AC 137 ms
77,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
E = list(map(int,input().split()))
#3bit全探索
def base10int(value, base):
    if (int(value / base)):
        return base10int(int(value / base), base) + str(value % base)
    return str(value % base)
f = 0
for i in range(3 ** N):
    now = base10int(i,3).zfill(N)
    A = 0 
    B = 0 
    C = 0
    for j in range(N):
        if now[j] == "0":
            A += E[j]
        elif now[j] == "1":
            B += E[j]
        else:
            C += E[j]
    if A == B and B == C and A == C:
        f += 1 
if f > 0:
    print("Yes")
else:
    print("No")
0