結果

問題 No.1594 Three Classes
ユーザー stngstng
提出日時 2021-07-18 11:59:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,032 KB
最終ジャッジ日時 2024-11-16 08:29:34
合計ジャッジ時間 6,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
76,768 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 103 ms
76,800 KB
testcase_04 AC 502 ms
76,672 KB
testcase_05 AC 527 ms
76,504 KB
testcase_06 AC 56 ms
62,976 KB
testcase_07 AC 102 ms
76,416 KB
testcase_08 AC 567 ms
77,032 KB
testcase_09 AC 551 ms
76,892 KB
testcase_10 AC 564 ms
76,764 KB
testcase_11 AC 533 ms
76,888 KB
testcase_12 AC 512 ms
76,500 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 147 ms
76,672 KB
testcase_15 AC 134 ms
76,544 KB
testcase_16 AC 109 ms
76,416 KB
testcase_17 AC 104 ms
76,544 KB
testcase_18 AC 42 ms
52,352 KB
testcase_19 AC 79 ms
71,040 KB
testcase_20 AC 100 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
e = [int(i) for i in input().split()]

def base10to(n, b):
    if (int(n/b)):
        return base10to(int(n/b), b) + str(n%b)
    return str(n%b)

num = 3**n

for i in range(num):
    tmp = str(base10to(i,3)).zfill(n)
    p = [0]*3
    for j in range(n):
        p[int(tmp[j])] += e[j]
    #print(p,tmp)
    if p[0] == p[1] == p[2]:
        print("Yes")
        exit()
        
print("No")
0