結果

問題 No.1017 Reiwa Sequence
ユーザー ygd.ygd.
提出日時 2021-05-18 15:07:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,052 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 300,992 KB
最終ジャッジ日時 2024-10-08 15:15:15
合計ジャッジ時間 13,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,240 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 39 ms
53,888 KB
testcase_03 AC 46 ms
61,824 KB
testcase_04 AC 38 ms
53,632 KB
testcase_05 AC 39 ms
54,272 KB
testcase_06 AC 43 ms
53,308 KB
testcase_07 AC 38 ms
53,504 KB
testcase_08 AC 39 ms
53,504 KB
testcase_09 AC 48 ms
63,300 KB
testcase_10 AC 339 ms
137,976 KB
testcase_11 AC 50 ms
62,592 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 48 ms
64,540 KB
testcase_15 AC 48 ms
64,684 KB
testcase_16 AC 48 ms
64,212 KB
testcase_17 AC 55 ms
68,764 KB
testcase_18 AC 49 ms
64,756 KB
testcase_19 AC 382 ms
159,568 KB
testcase_20 AC 390 ms
159,488 KB
testcase_21 AC 408 ms
159,832 KB
testcase_22 AC 442 ms
159,604 KB
testcase_23 AC 410 ms
159,244 KB
testcase_24 AC 390 ms
159,168 KB
testcase_25 AC 385 ms
159,720 KB
testcase_26 AC 377 ms
159,804 KB
testcase_27 AC 383 ms
158,660 KB
testcase_28 AC 355 ms
159,828 KB
testcase_29 AC 360 ms
159,652 KB
testcase_30 AC 361 ms
158,376 KB
testcase_31 AC 381 ms
158,628 KB
testcase_32 AC 359 ms
149,144 KB
testcase_33 AC 329 ms
144,324 KB
testcase_34 AC 306 ms
143,188 KB
testcase_35 AC 289 ms
143,412 KB
testcase_36 AC 310 ms
143,736 KB
testcase_37 AC 334 ms
148,588 KB
testcase_38 AC 310 ms
152,612 KB
testcase_39 AC 340 ms
149,340 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 1,097 ms
278,876 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 1,121 ms
252,552 KB
testcase_50 AC 1,024 ms
242,776 KB
testcase_51 AC 41 ms
55,332 KB
testcase_52 AC 333 ms
160,316 KB
testcase_53 AC 343 ms
159,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

num = min(N, 22)

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)
#print(dic)

def overlap(p,q):
    for i in range(30):
        if (p>>i)&1 == 1 and (q>>i)&1 == 1:
            return False
    return True

ret = [0]*N

dicL = list(dic.keys())
dicL.sort()

for x in dicL:
    if len(dic[x]) <= 1: continue
    n = len(dic[x])
    for i in range(n):
        a = dic[x][i]
        for j in range(i+1,n):
            b = dic[x][j]
            if not overlap(a,b): continue
            for s in range(30):
                if (a>>s)&1 == 1:
                    ret[s] = A[s]
                if (b>>s)&1 == 1:
                    ret[s] = -A[s]
                Flag = 0
                if (a>>s)&1 == 1 and (b>>s)&1 == 1:
                    Flag = 1
                assert Flag == 0
            print("Yes")
            print(*ret); exit()
print("No")
0