結果

問題 No.1594 Three Classes
ユーザー ki_ato_moki_ato_mo
提出日時 2021-07-10 18:49:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,069 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,852 KB
最終ジャッジ日時 2024-11-16 08:27:51
合計ジャッジ時間 12,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,050 ms
77,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 127 ms
77,208 KB
testcase_04 AC 1,051 ms
77,664 KB
testcase_05 AC 1,063 ms
77,640 KB
testcase_06 AC 146 ms
77,544 KB
testcase_07 AC 155 ms
77,284 KB
testcase_08 AC 1,064 ms
77,724 KB
testcase_09 AC 1,060 ms
77,644 KB
testcase_10 AC 1,069 ms
77,204 KB
testcase_11 AC 1,034 ms
77,532 KB
testcase_12 AC 1,045 ms
77,852 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 235 ms
76,952 KB
testcase_15 AC 395 ms
77,516 KB
testcase_16 AC 194 ms
76,568 KB
testcase_17 AC 465 ms
77,584 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 101 ms
76,416 KB
testcase_20 AC 124 ms
76,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
e = list(map(int, input().split()))
def Base_10_to_n(X, n):
    if (int(X/n)):
        return Base_10_to_n(int(X/n), n)+str(X%n)
    return str(X%n)
for i in range(3 ** n):
    x = list(Base_10_to_n(i, 3))
    a = []
    b = []
    c = []
    for j, k in enumerate(x):
        if k == '0':
            a.append(e[j])
        elif k == '1':
            b.append(e[j])
        else:
            c.append(e[j])
    for j in range(n - len(x)):
        a.append(e[-(j + 1)])
    # check = []
    # check.append(a)
    # check.append(b)
    # check.append(c)
    # print(check)
    if not a or not b or not c:
        continue
    else:
        if sum(a) == sum(b) and sum(b) == sum(c):
            print('Yes')
            exit()
print('No')
0