結果

問題 No.1594 Three Classes
ユーザー m1k__m1k__
提出日時 2021-07-10 02:30:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,008 KB
最終ジャッジ日時 2024-04-28 00:35:14
合計ジャッジ時間 1,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
74,940 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 46 ms
69,312 KB
testcase_04 AC 65 ms
74,868 KB
testcase_05 AC 68 ms
74,752 KB
testcase_06 AC 33 ms
51,584 KB
testcase_07 AC 43 ms
64,952 KB
testcase_08 AC 65 ms
75,008 KB
testcase_09 AC 68 ms
74,624 KB
testcase_10 AC 77 ms
74,752 KB
testcase_11 AC 71 ms
75,008 KB
testcase_12 AC 75 ms
74,744 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 53 ms
74,852 KB
testcase_15 AC 50 ms
74,752 KB
testcase_16 AC 48 ms
70,528 KB
testcase_17 AC 48 ms
67,072 KB
testcase_18 AC 34 ms
51,712 KB
testcase_19 AC 37 ms
57,728 KB
testcase_20 AC 44 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