結果

問題 No.1594 Three Classes
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-07-09 21:31:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-11-16 07:31:45
合計ジャッジ時間 6,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
76,288 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 89 ms
76,032 KB
testcase_04 AC 524 ms
75,776 KB
testcase_05 AC 522 ms
76,032 KB
testcase_06 AC 57 ms
62,848 KB
testcase_07 AC 78 ms
75,776 KB
testcase_08 AC 526 ms
76,032 KB
testcase_09 AC 527 ms
75,776 KB
testcase_10 AC 522 ms
76,032 KB
testcase_11 AC 517 ms
76,160 KB
testcase_12 AC 537 ms
76,160 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 129 ms
76,288 KB
testcase_15 AC 123 ms
75,904 KB
testcase_16 AC 98 ms
75,776 KB
testcase_17 AC 88 ms
75,776 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 66 ms
69,376 KB
testcase_20 AC 75 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for i in range(3**n):
    c = [0]*n
    k = Base_10_to_n(i, 3)
    if len(k) < n:
        k = (n-len(k))*"0" + k
    
    abc = [0]*3
    for j in range(n):
        abc[int(k[j])] += a[j]
    if max(abc) == min(abc):
        print("Yes")
        exit()
print("No")

0