結果

問題 No.1594 Three Classes
ユーザー detteiuudetteiuu
提出日時 2024-09-23 16:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 4,831 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 76,232 KB
最終ジャッジ日時 2024-09-23 16:58:12
合計ジャッジ時間 12,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
75,644 KB
testcase_01 AC 33 ms
52,572 KB
testcase_02 AC 33 ms
52,456 KB
testcase_03 AC 44 ms
63,688 KB
testcase_04 AC 256 ms
75,752 KB
testcase_05 AC 259 ms
76,232 KB
testcase_06 AC 45 ms
63,768 KB
testcase_07 AC 81 ms
68,908 KB
testcase_08 AC 259 ms
75,628 KB
testcase_09 AC 256 ms
75,780 KB
testcase_10 AC 258 ms
75,508 KB
testcase_11 AC 259 ms
75,496 KB
testcase_12 AC 261 ms
75,592 KB
testcase_13 AC 35 ms
52,552 KB
testcase_14 AC 92 ms
75,840 KB
testcase_15 AC 71 ms
75,828 KB
testcase_16 AC 55 ms
71,888 KB
testcase_17 AC 49 ms
68,072 KB
testcase_18 AC 35 ms
53,220 KB
testcase_19 AC 41 ms
61,000 KB
testcase_20 AC 42 ms
61,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
E = list(map(int, input().split()))

def BIT(n, c):
    return n//3**c%3

for bit in range(3**N):
    SUM = [0]*3
    for i in range(N):
        SUM[BIT(bit, i)] += E[i]
    if len(set(SUM)) == 1:
        print("Yes")
        break
else:
    print("No")
0