結果

問題 No.1594 Three Classes
ユーザー tnodinotnodino
提出日時 2021-08-08 21:41:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-11-16 08:31:50
合計ジャッジ時間 4,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
75,448 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 53 ms
61,824 KB
testcase_04 AC 275 ms
75,392 KB
testcase_05 AC 278 ms
76,032 KB
testcase_06 AC 53 ms
61,960 KB
testcase_07 AC 59 ms
62,336 KB
testcase_08 AC 276 ms
75,668 KB
testcase_09 AC 275 ms
75,592 KB
testcase_10 AC 275 ms
75,652 KB
testcase_11 AC 274 ms
75,776 KB
testcase_12 AC 275 ms
75,520 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 95 ms
66,048 KB
testcase_15 AC 73 ms
63,744 KB
testcase_16 AC 61 ms
62,464 KB
testcase_17 AC 56 ms
61,824 KB
testcase_18 AC 40 ms
51,872 KB
testcase_19 AC 50 ms
61,440 KB
testcase_20 AC 51 ms
61,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.1594 Three Classes
# https://yukicoder.me/problems/no/1594

# Step #1. 入力
N = int(input())
E = list(map(int,input().split()))

# Step #2. 前処理
power3 = [0] * (N+1)
power3[0] = 1
for i in range(1,N+1):
    power3[i] = 3 * power3[i-1]

# Step #3. 探索
for i in range(power3[N]):
    sumA = 0
    sumB = 0
    sumC = 0
    for j in range(N):
        bit = (i // power3[j]) % 3
        if bit == 0:
            sumA += E[j]
        if bit == 1:
            sumB += E[j]
        if bit == 2:
            sumC += E[j]
    if sumA == sumB and sumB == sumC:
        print('Yes')
        exit()
print('No')
0