結果

問題 No.1017 Reiwa Sequence
ユーザー ntudantuda
提出日時 2021-11-09 20:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 238,048 KB
最終ジャッジ日時 2024-04-29 19:07:30
合計ジャッジ時間 36,875 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
58,240 KB
testcase_01 AC 37 ms
55,680 KB
testcase_02 AC 36 ms
54,144 KB
testcase_03 AC 41 ms
63,360 KB
testcase_04 AC 39 ms
54,784 KB
testcase_05 AC 42 ms
56,704 KB
testcase_06 AC 40 ms
55,296 KB
testcase_07 AC 42 ms
54,400 KB
testcase_08 AC 40 ms
54,272 KB
testcase_09 AC 53 ms
73,600 KB
testcase_10 AC 60 ms
82,816 KB
testcase_11 AC 50 ms
72,448 KB
testcase_12 AC 64 ms
86,528 KB
testcase_13 AC 57 ms
78,208 KB
testcase_14 AC 53 ms
72,704 KB
testcase_15 AC 57 ms
74,624 KB
testcase_16 AC 52 ms
72,704 KB
testcase_17 AC 61 ms
81,536 KB
testcase_18 AC 54 ms
72,560 KB
testcase_19 AC 307 ms
227,356 KB
testcase_20 AC 304 ms
227,408 KB
testcase_21 AC 306 ms
227,360 KB
testcase_22 AC 296 ms
227,104 KB
testcase_23 AC 303 ms
227,356 KB
testcase_24 AC 306 ms
227,092 KB
testcase_25 AC 301 ms
227,096 KB
testcase_26 AC 286 ms
227,480 KB
testcase_27 AC 206 ms
167,424 KB
testcase_28 AC 232 ms
173,340 KB
testcase_29 AC 59 ms
85,280 KB
testcase_30 AC 69 ms
88,576 KB
testcase_31 AC 84 ms
107,520 KB
testcase_32 AC 191 ms
167,680 KB
testcase_33 AC 61 ms
84,268 KB
testcase_34 AC 193 ms
167,612 KB
testcase_35 AC 47 ms
73,984 KB
testcase_36 AC 49 ms
74,496 KB
testcase_37 AC 185 ms
167,680 KB
testcase_38 AC 48 ms
74,368 KB
testcase_39 AC 184 ms
167,680 KB
testcase_40 AC 360 ms
237,828 KB
testcase_41 AC 361 ms
238,048 KB
testcase_42 AC 339 ms
236,632 KB
testcase_43 AC 345 ms
236,468 KB
testcase_44 AC 97 ms
118,016 KB
testcase_45 AC 351 ms
236,240 KB
testcase_46 AC 358 ms
236,616 KB
testcase_47 AC 338 ms
236,436 KB
testcase_48 AC 115 ms
128,896 KB
testcase_49 AC 113 ms
128,808 KB
testcase_50 AC 116 ms
129,120 KB
testcase_51 AC 34 ms
53,504 KB
testcase_52 AC 233 ms
188,824 KB
testcase_53 AC 107 ms
132,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
M = min(22, N)

def calc():
    global M
    dp = [0] * (M * 150000)

    Smax = 1
    dic1 = {0:(0,)}
    dic2 = {}
    flag = 1
    for i in range(M):
        for k,v in dic1.items():
            if k+A[i] in dic2:
                for x in v:
                    dic2[k+A[i]] = dic2[k+A[i]] + tuple([x | 1 << i])
                if len(dic2[k+A[i]]) == 2:
                    return dic2[k+A[i]]
            else:
                for x in v:
                    dic2[k+A[i]] = tuple([x | 1 << i])
        dic1.update(dic2)
    return False

x = calc()
if x == False:
    print("No")
else:
    a,b = x
    k = 1
    for i in range(M):
        if (a | b) & k:
            if a & b & k:
                A[i] = 0
            elif b & k:
                A[i] = -A[i]
        else:
            A[i] = 0
        k <<= 1
    if N > M:
        for i in range(M,N):
            A[i] = 0
    print("Yes")
    print(*A)
0