結果

問題 No.1594 Three Classes
ユーザー m1k__m1k__
提出日時 2021-07-10 02:30:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,136 KB
最終ジャッジ日時 2024-11-16 08:23:50
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
74,496 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 55 ms
68,864 KB
testcase_04 AC 83 ms
74,752 KB
testcase_05 AC 85 ms
74,880 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 55 ms
64,512 KB
testcase_08 AC 87 ms
74,624 KB
testcase_09 AC 87 ms
74,880 KB
testcase_10 AC 85 ms
74,624 KB
testcase_11 AC 86 ms
75,136 KB
testcase_12 AC 83 ms
74,368 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 62 ms
74,624 KB
testcase_15 AC 62 ms
75,008 KB
testcase_16 AC 54 ms
70,656 KB
testcase_17 AC 54 ms
67,456 KB
testcase_18 AC 36 ms
52,352 KB
testcase_19 AC 43 ms
57,728 KB
testcase_20 AC 53 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(x) for x in input().split()]
def dfs(i, a, b, c):
    if i==N: 
        if a==b and b==c:
            print('Yes')
            exit()
    else:
        dfs(i+1, a+A[i], b, c)
        dfs(i+1, a, b+A[i], c)
        dfs(i+1, a, b, c+A[i])
dfs(0, 0, 0, 0)
print('No')
0