結果

問題 No.1594 Three Classes
ユーザー nohakai3nohakai3
提出日時 2022-11-05 11:59:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,328 KB
最終ジャッジ日時 2024-07-19 06:21:12
合計ジャッジ時間 8,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 682 ms
77,204 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 119 ms
76,672 KB
testcase_04 AC 669 ms
77,208 KB
testcase_05 AC 673 ms
76,820 KB
testcase_06 AC 65 ms
64,768 KB
testcase_07 AC 106 ms
76,416 KB
testcase_08 AC 682 ms
76,824 KB
testcase_09 AC 688 ms
77,328 KB
testcase_10 AC 679 ms
77,232 KB
testcase_11 AC 672 ms
76,820 KB
testcase_12 AC 674 ms
77,076 KB
testcase_13 AC 43 ms
51,840 KB
testcase_14 AC 169 ms
76,416 KB
testcase_15 AC 160 ms
76,416 KB
testcase_16 AC 125 ms
76,672 KB
testcase_17 AC 114 ms
76,416 KB
testcase_18 AC 42 ms
52,352 KB
testcase_19 AC 109 ms
76,588 KB
testcase_20 AC 96 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=list(map(int,input().split()))
from itertools import product
for bits in product([0,1,2],repeat=n):
    a=[x for bit,x in zip(bits,A) if bit==0]
    b=[x for bit,x in zip(bits,A) if bit==1]
    c=[x for bit,x in zip(bits,A) if bit==2]
    if sum(a)==sum(b)==sum(c):
        print("Yes")
        exit()

print("No")
0