結果

問題 No.1594 Three Classes
ユーザー Akijin_007Akijin_007
提出日時 2022-10-21 14:37:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 76,948 KB
最終ジャッジ日時 2024-07-01 00:29:27
合計ジャッジ時間 8,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 647 ms
76,948 KB
testcase_01 AC 37 ms
53,252 KB
testcase_02 AC 36 ms
52,924 KB
testcase_03 AC 108 ms
76,684 KB
testcase_04 AC 652 ms
76,320 KB
testcase_05 AC 654 ms
76,768 KB
testcase_06 AC 52 ms
64,984 KB
testcase_07 AC 97 ms
76,460 KB
testcase_08 AC 652 ms
76,596 KB
testcase_09 AC 656 ms
76,600 KB
testcase_10 AC 651 ms
76,684 KB
testcase_11 AC 647 ms
76,720 KB
testcase_12 AC 648 ms
76,428 KB
testcase_13 AC 37 ms
52,816 KB
testcase_14 AC 155 ms
76,760 KB
testcase_15 AC 146 ms
76,772 KB
testcase_16 AC 118 ms
76,652 KB
testcase_17 AC 107 ms
76,280 KB
testcase_18 AC 37 ms
52,624 KB
testcase_19 AC 74 ms
75,992 KB
testcase_20 AC 84 ms
76,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
A = list(map(int, input().split()))

def base10int(value, base):
    if (int(value / base)):
        return base10int(int(value / base), base) + str(value % base)
    return str(value % base)

ans = 0

for i in range(3 ** N):
    b = base10int(i, 3)
    b = format(b, ">0" + str(N))
    p = [0] * 3
    for j in range(N):
        p[int(b[j])] += A[j]
    if min(p) == max(p):
        ans = 1
        break

if ans == 1:
    print("Yes")
else:
    print("No")

0