結果

問題 No.1017 Reiwa Sequence
ユーザー Kiri8128Kiri8128
提出日時 2020-04-04 02:15:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 159,440 KB
最終ジャッジ日時 2024-07-03 06:44:12
合計ジャッジ時間 33,624 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
117,120 KB
testcase_01 AC 59 ms
117,376 KB
testcase_02 AC 60 ms
116,992 KB
testcase_03 AC 59 ms
117,248 KB
testcase_04 AC 58 ms
117,376 KB
testcase_05 AC 60 ms
116,992 KB
testcase_06 AC 58 ms
117,632 KB
testcase_07 AC 58 ms
118,016 KB
testcase_08 AC 59 ms
117,632 KB
testcase_09 AC 62 ms
123,008 KB
testcase_10 AC 62 ms
123,648 KB
testcase_11 AC 63 ms
123,776 KB
testcase_12 AC 62 ms
123,008 KB
testcase_13 AC 60 ms
117,248 KB
testcase_14 AC 63 ms
123,136 KB
testcase_15 AC 62 ms
123,776 KB
testcase_16 AC 62 ms
123,136 KB
testcase_17 AC 62 ms
123,520 KB
testcase_18 AC 64 ms
123,264 KB
testcase_19 AC 71 ms
123,648 KB
testcase_20 AC 70 ms
123,776 KB
testcase_21 AC 70 ms
122,880 KB
testcase_22 AC 71 ms
123,264 KB
testcase_23 AC 73 ms
123,264 KB
testcase_24 AC 73 ms
122,880 KB
testcase_25 AC 69 ms
123,520 KB
testcase_26 AC 68 ms
123,264 KB
testcase_27 AC 69 ms
123,520 KB
testcase_28 AC 69 ms
123,008 KB
testcase_29 AC 63 ms
123,776 KB
testcase_30 AC 63 ms
122,880 KB
testcase_31 AC 64 ms
123,264 KB
testcase_32 AC 65 ms
123,904 KB
testcase_33 AC 61 ms
123,392 KB
testcase_34 AC 69 ms
123,520 KB
testcase_35 AC 60 ms
117,248 KB
testcase_36 AC 57 ms
118,056 KB
testcase_37 AC 67 ms
123,264 KB
testcase_38 AC 59 ms
117,888 KB
testcase_39 AC 67 ms
123,904 KB
testcase_40 AC 109 ms
152,064 KB
testcase_41 AC 104 ms
152,064 KB
testcase_42 AC 104 ms
150,528 KB
testcase_43 AC 105 ms
150,528 KB
testcase_44 AC 91 ms
151,296 KB
testcase_45 AC 106 ms
151,808 KB
testcase_46 AC 103 ms
150,656 KB
testcase_47 AC 100 ms
151,040 KB
testcase_48 AC 113 ms
159,232 KB
testcase_49 AC 113 ms
159,056 KB
testcase_50 AC 110 ms
159,440 KB
testcase_51 AC 58 ms
117,836 KB
testcase_52 AC 71 ms
123,516 KB
testcase_53 AC 63 ms
123,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]
K = min(N, 22)
B = A[:K]

D = {1<<i: i for i in range(22)}
X = [0] * (1 << 22)
Y = [0] * (1 << 22)
for ii in range(K):
    a = B[ii]
    iii = 1 << ii
    for i in range(1 << ii, 1 << ii + 1):
        x = X[i - iii] + a
        X[i] = x
        if Y[x]:
            j = Y[x]
            k = i & j
            i ^= k
            j ^= k
            for s in range(K):
                if i >> s & 1:
                    pass
                elif j >> s & 1:
                    A[s] *= -1
                else:
                    A[s] = 0
            for s in range(K, N):
                A[s] = 0
            print("Yes")
            print(*A)
            exit()
        else:
            Y[x] = i
print("No")
0