結果

問題 No.1594 Three Classes
ユーザー ibukitiibukiti
提出日時 2021-10-19 16:15:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 453 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-09-20 06:23:15
合計ジャッジ時間 22,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 306 ms
90,240 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 233 ms
89,984 KB
testcase_07 AC 270 ms
90,112 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 27 ms
10,496 KB
testcase_14 AC 489 ms
89,984 KB
testcase_15 AC 451 ms
89,984 KB
testcase_16 AC 191 ms
34,304 KB
testcase_17 AC 315 ms
90,240 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 33 ms
10,752 KB
testcase_20 AC 47 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
n=int(input())
e=list(map(int,input().split()))
bitdp=list(itertools.product([0,1,2],repeat=n))
t=0
for bit in bitdp:
    ans0=0
    ans1=0
    ans2=0
    bitlis=list(bit)
    for i in range(n):
        if bitlis[i]==0:
            ans0+=e[i]
        elif bitlis[i]==1:
            ans1+=e[i]
        else:
            ans2+=e[i]
    if ans0==ans1 and ans1==ans2 :
        print("Yes")
        t=1
        break
if t==0:
    print("No")
0