結果

問題 No.1017 Reiwa Sequence
ユーザー ygd.ygd.
提出日時 2021-05-18 15:12:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 167,964 KB
最終ジャッジ日時 2024-10-08 15:23:58
合計ジャッジ時間 40,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 44 ms
60,416 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 41 ms
53,376 KB
testcase_07 AC 40 ms
53,760 KB
testcase_08 AC 40 ms
53,504 KB
testcase_09 AC 51 ms
62,336 KB
testcase_10 AC 49 ms
62,592 KB
testcase_11 AC 48 ms
61,952 KB
testcase_12 AC 49 ms
62,976 KB
testcase_13 AC 47 ms
61,568 KB
testcase_14 AC 47 ms
62,080 KB
testcase_15 AC 48 ms
62,592 KB
testcase_16 AC 47 ms
62,080 KB
testcase_17 AC 51 ms
66,048 KB
testcase_18 AC 48 ms
62,080 KB
testcase_19 AC 300 ms
151,092 KB
testcase_20 AC 292 ms
151,760 KB
testcase_21 AC 292 ms
151,576 KB
testcase_22 AC 303 ms
151,220 KB
testcase_23 AC 289 ms
151,344 KB
testcase_24 AC 298 ms
151,696 KB
testcase_25 AC 296 ms
151,220 KB
testcase_26 AC 293 ms
151,348 KB
testcase_27 AC 209 ms
129,616 KB
testcase_28 AC 228 ms
137,504 KB
testcase_29 AC 52 ms
65,280 KB
testcase_30 AC 55 ms
68,224 KB
testcase_31 AC 72 ms
82,304 KB
testcase_32 AC 183 ms
129,044 KB
testcase_33 AC 48 ms
63,616 KB
testcase_34 AC 187 ms
129,424 KB
testcase_35 AC 40 ms
53,120 KB
testcase_36 AC 44 ms
59,776 KB
testcase_37 AC 187 ms
129,416 KB
testcase_38 AC 40 ms
53,376 KB
testcase_39 AC 178 ms
129,552 KB
testcase_40 AC 360 ms
167,244 KB
testcase_41 AC 354 ms
167,248 KB
testcase_42 AC 355 ms
167,464 KB
testcase_43 AC 345 ms
167,032 KB
testcase_44 AC 85 ms
92,288 KB
testcase_45 AC 351 ms
167,280 KB
testcase_46 AC 343 ms
167,964 KB
testcase_47 AC 346 ms
167,336 KB
testcase_48 AC 106 ms
104,320 KB
testcase_49 AC 98 ms
103,936 KB
testcase_50 AC 99 ms
105,076 KB
testcase_51 AC 39 ms
53,120 KB
testcase_52 AC 298 ms
151,576 KB
testcase_53 AC 112 ms
97,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

num = min(N, 22)
ret = [0]*N

from collections import defaultdict 
dic = defaultdict(list)

for i in range(1,1<<num):
    temp = 0
    for j in range(num):
        if (i>>j)&1 == 1:
            temp += A[j]
    dic[temp].append(i)
    if len(dic[temp]) == 2:
        a = dic[temp][0]
        b = dic[temp][1]
        for s in range(30):
            if (a>>s)&1 == 1:
                ret[s] = A[s]
            if (b>>s)&1 == 1:
                ret[s] = -A[s]
        print("Yes")
        print(*ret); exit()
print("No")
0