結果

問題 No.1017 Reiwa Sequence
ユーザー ああいいああいい
提出日時 2022-01-09 16:19:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 143,636 KB
最終ジャッジ日時 2024-11-14 10:26:27
合計ジャッジ時間 39,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,384 KB
testcase_01 AC 36 ms
53,136 KB
testcase_02 AC 37 ms
53,152 KB
testcase_03 AC 41 ms
59,436 KB
testcase_04 AC 37 ms
52,752 KB
testcase_05 AC 36 ms
52,948 KB
testcase_06 AC 37 ms
53,668 KB
testcase_07 AC 36 ms
52,568 KB
testcase_08 AC 36 ms
53,184 KB
testcase_09 AC 44 ms
59,852 KB
testcase_10 AC 48 ms
63,064 KB
testcase_11 AC 47 ms
62,440 KB
testcase_12 AC 49 ms
64,256 KB
testcase_13 AC 47 ms
63,144 KB
testcase_14 AC 43 ms
60,292 KB
testcase_15 AC 44 ms
60,996 KB
testcase_16 AC 44 ms
61,132 KB
testcase_17 AC 47 ms
63,660 KB
testcase_18 AC 43 ms
61,340 KB
testcase_19 AC 231 ms
122,392 KB
testcase_20 AC 228 ms
122,336 KB
testcase_21 AC 229 ms
122,384 KB
testcase_22 AC 231 ms
122,300 KB
testcase_23 AC 226 ms
122,476 KB
testcase_24 AC 232 ms
122,452 KB
testcase_25 AC 232 ms
122,184 KB
testcase_26 AC 224 ms
121,992 KB
testcase_27 AC 204 ms
119,572 KB
testcase_28 AC 206 ms
118,880 KB
testcase_29 AC 50 ms
64,380 KB
testcase_30 AC 56 ms
67,672 KB
testcase_31 AC 75 ms
77,568 KB
testcase_32 AC 151 ms
114,704 KB
testcase_33 AC 50 ms
64,112 KB
testcase_34 AC 173 ms
114,596 KB
testcase_35 AC 36 ms
52,380 KB
testcase_36 AC 41 ms
58,792 KB
testcase_37 AC 181 ms
114,736 KB
testcase_38 AC 37 ms
52,888 KB
testcase_39 AC 150 ms
114,576 KB
testcase_40 AC 317 ms
143,372 KB
testcase_41 AC 326 ms
143,060 KB
testcase_42 AC 328 ms
143,152 KB
testcase_43 AC 276 ms
143,636 KB
testcase_44 AC 74 ms
89,816 KB
testcase_45 AC 312 ms
143,156 KB
testcase_46 AC 269 ms
143,376 KB
testcase_47 AC 256 ms
143,468 KB
testcase_48 AC 98 ms
99,820 KB
testcase_49 AC 89 ms
99,640 KB
testcase_50 AC 89 ms
99,620 KB
testcase_51 AC 37 ms
52,736 KB
testcase_52 AC 232 ms
122,244 KB
testcase_53 AC 124 ms
96,056 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