結果
| 問題 | No.1594 Three Classes | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 18 | 
ソースコード
#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")
            
            
            
        