結果

問題 No.1017 Reiwa Sequence
ユーザー shotoyooshotoyoo
提出日時 2021-05-09 12:06:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,155 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 346,224 KB
最終ジャッジ日時 2024-09-18 18:19:54
合計ジャッジ時間 42,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 34 ms
52,608 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 AC 40 ms
58,880 KB
testcase_10 AC 42 ms
61,440 KB
testcase_11 AC 41 ms
58,624 KB
testcase_12 AC 44 ms
61,696 KB
testcase_13 AC 34 ms
52,224 KB
testcase_14 AC 38 ms
58,368 KB
testcase_15 AC 37 ms
59,264 KB
testcase_16 AC 40 ms
58,752 KB
testcase_17 AC 41 ms
63,500 KB
testcase_18 AC 38 ms
58,752 KB
testcase_19 AC 208 ms
177,152 KB
testcase_20 AC 205 ms
176,640 KB
testcase_21 AC 201 ms
177,024 KB
testcase_22 AC 220 ms
177,000 KB
testcase_23 AC 259 ms
176,768 KB
testcase_24 AC 210 ms
176,972 KB
testcase_25 AC 219 ms
177,024 KB
testcase_26 AC 199 ms
177,024 KB
testcase_27 AC 213 ms
167,296 KB
testcase_28 AC 219 ms
176,896 KB
testcase_29 AC 51 ms
67,584 KB
testcase_30 AC 49 ms
71,040 KB
testcase_31 AC 97 ms
97,444 KB
testcase_32 AC 321 ms
168,972 KB
testcase_33 AC 51 ms
67,712 KB
testcase_34 AC 429 ms
200,784 KB
testcase_35 AC 33 ms
52,352 KB
testcase_36 AC 33 ms
51,968 KB
testcase_37 AC 302 ms
179,700 KB
testcase_38 AC 33 ms
51,840 KB
testcase_39 AC 335 ms
171,580 KB
testcase_40 AC 1,143 ms
342,668 KB
testcase_41 AC 1,146 ms
333,780 KB
testcase_42 AC 1,073 ms
331,592 KB
testcase_43 AC 1,138 ms
341,828 KB
testcase_44 AC 85 ms
83,584 KB
testcase_45 AC 1,060 ms
346,224 KB
testcase_46 AC 1,155 ms
333,180 KB
testcase_47 AC 1,026 ms
325,912 KB
testcase_48 AC 79 ms
100,760 KB
testcase_49 AC 73 ms
98,944 KB
testcase_50 AC 75 ms
100,224 KB
testcase_51 AC 37 ms
52,096 KB
testcase_52 AC 237 ms
177,152 KB
testcase_53 AC 134 ms
146,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
a = list(map(int, input().split()))
s = set([0])
done = 0
d = {0: None}
res = []
def get(v):
    assert v in d
    index = []
    while d[v] is not None:
        ind = d[v]
        index.append(ind)
        v -= a[ind]
    return index
for i,v in enumerate(a):
    nd = {}
    for vv in d:
        if v+vv in d:
            index0 = get(v+vv)
            index = get(vv)
            index.append(i)
            res.append(index)
            res.append(index0)
        nd[v+vv] = i
    d.update(nd)
    if len(res)>=2:
        print("Yes")
        ans = [0]*n
        for i in res[0]:
            ans[i] += a[i]
        for i in res[1]:
            ans[i] -= a[i]
        write(" ".join(map(str, ans)))
        break
else:
    print("No")
0