結果

問題 No.1594 Three Classes
ユーザー 330Xs330Xs
提出日時 2022-02-04 17:24:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 655 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,372 KB
最終ジャッジ日時 2024-06-11 11:20:11
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
75,904 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 306 ms
75,904 KB
testcase_06 AC 59 ms
66,176 KB
testcase_07 WA -
testcase_08 AC 304 ms
75,904 KB
testcase_09 AC 310 ms
76,032 KB
testcase_10 AC 314 ms
76,372 KB
testcase_11 AC 311 ms
75,904 KB
testcase_12 AC 317 ms
76,160 KB
testcase_13 AC 35 ms
51,712 KB
testcase_14 AC 62 ms
69,504 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 35 ms
52,096 KB
testcase_19 AC 36 ms
51,712 KB
testcase_20 AC 46 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
if(sum(a) % 3 != 0):
    print('No')
else:
    elem = sum(a) // 3
    for i in range(3**n):
        lis1 = []
        lis2 = []
        lis3 = []
        ind = set()
        for j in range(n):
            if((i >> j) & 2):
                lis1.append(a[j])
            else:
                if((i >> j) & 1):
                    lis2.append(a[j])
                else:
                    lis3.append(a[j])
                ind.add(j)
        if(sum(lis1) == elem):
            if(sum(lis2) == elem):
                print('Yes')
                exit(0)
    
    print('No')
                
            
0