結果

問題 No.1017 Reiwa Sequence
ユーザー ああいいああいい
提出日時 2022-01-09 16:19:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 143,720 KB
最終ジャッジ日時 2024-04-26 19:49:31
合計ジャッジ時間 39,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 43 ms
58,752 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 45 ms
60,416 KB
testcase_10 AC 50 ms
62,592 KB
testcase_11 AC 50 ms
62,208 KB
testcase_12 AC 50 ms
63,232 KB
testcase_13 AC 49 ms
62,464 KB
testcase_14 AC 45 ms
60,416 KB
testcase_15 AC 44 ms
60,544 KB
testcase_16 AC 45 ms
60,288 KB
testcase_17 AC 47 ms
63,360 KB
testcase_18 AC 45 ms
60,416 KB
testcase_19 AC 250 ms
122,356 KB
testcase_20 AC 248 ms
121,964 KB
testcase_21 AC 252 ms
122,096 KB
testcase_22 AC 251 ms
122,484 KB
testcase_23 AC 248 ms
122,224 KB
testcase_24 AC 255 ms
122,096 KB
testcase_25 AC 244 ms
122,376 KB
testcase_26 AC 235 ms
122,216 KB
testcase_27 AC 216 ms
119,040 KB
testcase_28 AC 221 ms
118,912 KB
testcase_29 AC 52 ms
64,512 KB
testcase_30 AC 55 ms
66,688 KB
testcase_31 AC 76 ms
76,928 KB
testcase_32 AC 157 ms
114,848 KB
testcase_33 AC 51 ms
63,232 KB
testcase_34 AC 183 ms
115,168 KB
testcase_35 AC 39 ms
52,480 KB
testcase_36 AC 43 ms
58,496 KB
testcase_37 AC 191 ms
114,816 KB
testcase_38 AC 38 ms
52,224 KB
testcase_39 AC 159 ms
114,688 KB
testcase_40 AC 338 ms
143,160 KB
testcase_41 AC 349 ms
143,288 KB
testcase_42 AC 359 ms
143,200 KB
testcase_43 AC 292 ms
143,720 KB
testcase_44 AC 76 ms
89,600 KB
testcase_45 AC 333 ms
143,472 KB
testcase_46 AC 293 ms
143,332 KB
testcase_47 AC 273 ms
143,588 KB
testcase_48 AC 102 ms
99,656 KB
testcase_49 AC 90 ms
99,584 KB
testcase_50 AC 91 ms
99,328 KB
testcase_51 AC 37 ms
51,712 KB
testcase_52 AC 245 ms
122,480 KB
testcase_53 AC 127 ms
95,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
import sys

if n >= 22:
    l = A[:22]
    N = 22
else:
    l = A
    N = n
s =set()
flag = False
bit1 = -1
for bit in range(1 << N):
    Sum = 0
    for j in range(N):
        mask = 1 << j
        if bit & mask:
            Sum += A[j]
    if Sum in s:
        flag = True
        bit1 = bit
        break
    s.add(Sum)
if flag == False:
    print('No')
    exit()
for bit in range(1 << N):
    Sum2 = 0
    for j in range(N):
        mask = 1 << j
        if bit & mask:
            Sum2 += A[j]
    if Sum2 == Sum:
        bit2 = bit
        break
x = bit1 & bit2
bit1 ^= x
bit2 ^= x
print('Yes')
for j in range(N):
    mask = 1 << j
    if mask & bit1:
        print(A[j],end = " ")
    elif mask & bit2:
        print(-A[j],end = " ")
    else:
        print(0,end = " ")
for j in range(N,n):
    print(0,end = " ")
print()
0