結果

問題 No.1594 Three Classes
ユーザー KeroruKeroru
提出日時 2021-07-10 15:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 592 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 191,940 KB
最終ジャッジ日時 2024-11-16 08:27:20
合計ジャッジ時間 10,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
191,932 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 540 ms
191,428 KB
testcase_04 AC 547 ms
191,292 KB
testcase_05 AC 551 ms
191,160 KB
testcase_06 AC 544 ms
191,420 KB
testcase_07 AC 536 ms
191,808 KB
testcase_08 AC 536 ms
191,788 KB
testcase_09 AC 553 ms
191,288 KB
testcase_10 AC 553 ms
191,552 KB
testcase_11 AC 592 ms
191,940 KB
testcase_12 AC 579 ms
191,416 KB
testcase_13 AC 51 ms
61,696 KB
testcase_14 AC 545 ms
191,424 KB
testcase_15 AC 545 ms
191,684 KB
testcase_16 AC 215 ms
108,796 KB
testcase_17 AC 535 ms
191,672 KB
testcase_18 AC 44 ms
59,904 KB
testcase_19 AC 53 ms
65,152 KB
testcase_20 AC 79 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bit_combination(n,base=2):
    rt=[]
    for tb in range(base**n):s=[tb//(base**bt)%base for bt in range(n)];rt+=[s]
    return rt

n=int(input())
e=[int(i)for i in input().split()]
f=1
for x in bit_combination(n,3):
    a=[0]*3
    for i in range(n):a[x[i]]+=e[i]
    if len(set(a))==1:f=0
print('YNeos'[f::2])
0