結果

問題 No.1594 Three Classes
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-07-09 21:29:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-11-16 07:28:47
合計ジャッジ時間 3,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
e=list(map(int,input().split()))
ans="No"
for bit in range(3**n):
    a=0
    b=0
    c=0

    for i in range(n):
        if bit%3==0:a+=e[i]
        elif bit%3==1:b+=e[i]
        else:c+=e[i]
        bit//=3
    if a==b==c:ans="Yes"

print(ans)

0