結果

問題 No.1594 Three Classes
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-07-09 22:06:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,948 KB
最終ジャッジ日時 2024-11-16 08:17:24
合計ジャッジ時間 5,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
77,292 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 311 ms
77,948 KB
testcase_04 AC 283 ms
76,844 KB
testcase_05 AC 279 ms
77,176 KB
testcase_06 AC 283 ms
76,696 KB
testcase_07 AC 317 ms
77,944 KB
testcase_08 AC 274 ms
77,440 KB
testcase_09 AC 265 ms
76,928 KB
testcase_10 AC 258 ms
76,924 KB
testcase_11 AC 283 ms
77,052 KB
testcase_12 AC 275 ms
76,664 KB
testcase_13 AC 50 ms
62,464 KB
testcase_14 AC 300 ms
77,564 KB
testcase_15 AC 306 ms
77,556 KB
testcase_16 AC 198 ms
77,204 KB
testcase_17 AC 290 ms
77,300 KB
testcase_18 AC 43 ms
58,112 KB
testcase_19 AC 66 ms
70,144 KB
testcase_20 AC 117 ms
76,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
e = list(map(int,input().split()))
ans = "No"
def dfs(k,l):
    global ans,n
    if k == n:
        if sum(l[0]) == sum(l[1]) == sum(l[2]):
            ans = "Yes"
        return
    for i in [0,1,2]:
        l[i][k] += e[k]
        dfs(k + 1,l[::])
        l[i][k] -= e[k]
l = [[0] * n for _ in range(3)]
dfs(0,l[::])
print(ans)
0