結果

問題 No.1594 Three Classes
ユーザー syunsukesyunsuke
提出日時 2021-07-10 17:06:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-11-16 08:27:09
合計ジャッジ時間 5,070 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 ms
75,520 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 69 ms
62,848 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 401 ms
75,648 KB
testcase_06 AC 54 ms
61,440 KB
testcase_07 AC 61 ms
62,080 KB
testcase_08 AC 404 ms
75,520 KB
testcase_09 AC 403 ms
75,520 KB
testcase_10 AC 400 ms
75,520 KB
testcase_11 AC 402 ms
75,648 KB
testcase_12 AC 404 ms
76,032 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 100 ms
64,896 KB
testcase_15 AC 95 ms
64,384 KB
testcase_16 AC 73 ms
62,720 KB
testcase_17 AC 66 ms
62,464 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 40 ms
51,840 KB
testcase_20 AC 55 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
E = list(map(int,input().split()))
if sum(E)%3 != 0:
    print("No")
    exit()
ANS = sum(E)//3
for i in range(3**N):
    X = 0
    Y = 0
    I = i+0
    for n in range(N):
        c =  I // (3**(N-1-n))
        if c == 0:
            X += E[n]
        elif c == 1:
            Y += E[n]
        I %=(3**(N-1-n))
    #print(X,Y)
    if X == ANS and Y == ANS:
        print("Yes")
        exit()
print("No")
0