結果

問題 No.1017 Reiwa Sequence
ユーザー ntudantuda
提出日時 2021-11-09 20:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,956 KB
実行使用メモリ 238,128 KB
最終ジャッジ日時 2024-11-19 01:35:55
合計ジャッジ時間 37,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,624 KB
testcase_01 AC 40 ms
56,064 KB
testcase_02 AC 37 ms
54,400 KB
testcase_03 AC 41 ms
63,232 KB
testcase_04 AC 38 ms
54,656 KB
testcase_05 AC 38 ms
57,216 KB
testcase_06 AC 38 ms
55,552 KB
testcase_07 AC 36 ms
54,528 KB
testcase_08 AC 37 ms
54,144 KB
testcase_09 AC 46 ms
73,472 KB
testcase_10 AC 49 ms
83,072 KB
testcase_11 AC 44 ms
72,576 KB
testcase_12 AC 50 ms
87,040 KB
testcase_13 AC 45 ms
78,464 KB
testcase_14 AC 45 ms
72,832 KB
testcase_15 AC 51 ms
74,624 KB
testcase_16 AC 45 ms
72,960 KB
testcase_17 AC 51 ms
81,792 KB
testcase_18 AC 47 ms
72,832 KB
testcase_19 AC 273 ms
227,360 KB
testcase_20 AC 267 ms
227,284 KB
testcase_21 AC 269 ms
227,348 KB
testcase_22 AC 282 ms
227,276 KB
testcase_23 AC 274 ms
227,304 KB
testcase_24 AC 265 ms
227,544 KB
testcase_25 AC 268 ms
227,436 KB
testcase_26 AC 258 ms
227,456 KB
testcase_27 AC 189 ms
167,748 KB
testcase_28 AC 197 ms
173,356 KB
testcase_29 AC 53 ms
85,572 KB
testcase_30 AC 54 ms
88,992 KB
testcase_31 AC 72 ms
107,880 KB
testcase_32 AC 166 ms
167,672 KB
testcase_33 AC 51 ms
84,248 KB
testcase_34 AC 173 ms
167,908 KB
testcase_35 AC 44 ms
74,636 KB
testcase_36 AC 42 ms
74,768 KB
testcase_37 AC 166 ms
167,684 KB
testcase_38 AC 43 ms
74,896 KB
testcase_39 AC 168 ms
167,688 KB
testcase_40 AC 322 ms
237,900 KB
testcase_41 AC 318 ms
238,128 KB
testcase_42 AC 318 ms
236,740 KB
testcase_43 AC 324 ms
236,592 KB
testcase_44 AC 85 ms
118,024 KB
testcase_45 AC 317 ms
236,580 KB
testcase_46 AC 310 ms
236,552 KB
testcase_47 AC 300 ms
236,576 KB
testcase_48 AC 105 ms
129,048 KB
testcase_49 AC 99 ms
129,004 KB
testcase_50 AC 101 ms
129,572 KB
testcase_51 AC 37 ms
54,872 KB
testcase_52 AC 222 ms
189,140 KB
testcase_53 AC 98 ms
132,284 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