結果

問題 No.1017 Reiwa Sequence
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-20 19:33:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 615 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 178,052 KB
最終ジャッジ日時 2024-07-02 18:05:22
合計ジャッジ時間 48,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 40 ms
54,144 KB
testcase_03 AC 47 ms
61,696 KB
testcase_04 AC 40 ms
53,632 KB
testcase_05 AC 40 ms
53,888 KB
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 40 ms
53,632 KB
testcase_08 AC 41 ms
53,504 KB
testcase_09 AC 50 ms
63,488 KB
testcase_10 AC 151 ms
80,768 KB
testcase_11 AC 50 ms
63,616 KB
testcase_12 AC 391 ms
84,480 KB
testcase_13 AC 383 ms
84,132 KB
testcase_14 AC 51 ms
63,488 KB
testcase_15 AC 50 ms
63,744 KB
testcase_16 AC 49 ms
63,324 KB
testcase_17 AC 54 ms
68,096 KB
testcase_18 AC 50 ms
63,488 KB
testcase_19 AC 334 ms
165,216 KB
testcase_20 AC 309 ms
165,468 KB
testcase_21 AC 308 ms
165,476 KB
testcase_22 AC 324 ms
165,216 KB
testcase_23 AC 307 ms
165,216 KB
testcase_24 AC 307 ms
165,476 KB
testcase_25 AC 311 ms
165,088 KB
testcase_26 AC 307 ms
165,472 KB
testcase_27 AC 245 ms
131,300 KB
testcase_28 AC 263 ms
142,184 KB
testcase_29 AC 151 ms
81,192 KB
testcase_30 AC 155 ms
82,816 KB
testcase_31 AC 160 ms
90,772 KB
testcase_32 AC 223 ms
124,240 KB
testcase_33 AC 150 ms
80,584 KB
testcase_34 AC 251 ms
124,160 KB
testcase_35 AC 148 ms
79,784 KB
testcase_36 AC 151 ms
80,256 KB
testcase_37 AC 228 ms
123,964 KB
testcase_38 AC 149 ms
80,244 KB
testcase_39 AC 228 ms
124,132 KB
testcase_40 AC 615 ms
177,516 KB
testcase_41 AC 603 ms
177,784 KB
testcase_42 AC 609 ms
177,432 KB
testcase_43 AC 607 ms
177,744 KB
testcase_44 AC 424 ms
98,048 KB
testcase_45 AC 609 ms
178,052 KB
testcase_46 AC 603 ms
177,612 KB
testcase_47 AC 595 ms
177,552 KB
testcase_48 AC 444 ms
107,764 KB
testcase_49 AC 438 ms
107,608 KB
testcase_50 AC 439 ms
108,036 KB
testcase_51 AC 41 ms
54,124 KB
testcase_52 AC 318 ms
165,224 KB
testcase_53 AC 181 ms
100,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def search(N, A):
    N = min(20, N)
    dp = [0] * (1 << N)
    for S in range(1, 1 << N):
        for i in range(N):
            if (S >> i) & 1:
                dp[S] += A[i]

    memo = defaultdict(list)
    for S in range(1, 1 << N):
        if not memo[dp[S]]:
            memo[dp[S]].append(S)
            continue
        for T in memo[dp[S]]:
            if S & T == 0:
                return S, T
        memo[dp[S]].append(S)
    return -1, -1


N = int(input())
A = list(map(int, input().split()))
S, T = search(N, A)

if S == -1:
    print("No")
    exit()

ans = [0] * N
for i in range(20):
    if (S >> i) & 1:
        ans[i] = A[i]
    if (T >> i) & 1:
        ans[i] = -A[i]

print("Yes")
print(*ans)
0