結果

問題 No.1017 Reiwa Sequence
ユーザー Mao-betaMao-beta
提出日時 2024-03-12 12:18:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 1,864 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 169,568 KB
最終ジャッジ日時 2024-09-29 22:16:08
合計ジャッジ時間 35,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,192 KB
testcase_01 AC 44 ms
55,936 KB
testcase_02 AC 42 ms
56,064 KB
testcase_03 AC 49 ms
62,720 KB
testcase_04 AC 42 ms
55,808 KB
testcase_05 AC 43 ms
55,808 KB
testcase_06 AC 42 ms
56,448 KB
testcase_07 AC 43 ms
55,552 KB
testcase_08 AC 42 ms
56,088 KB
testcase_09 AC 48 ms
63,616 KB
testcase_10 AC 51 ms
69,376 KB
testcase_11 AC 48 ms
64,256 KB
testcase_12 AC 62 ms
98,048 KB
testcase_13 AC 59 ms
95,872 KB
testcase_14 AC 47 ms
63,744 KB
testcase_15 AC 47 ms
65,280 KB
testcase_16 AC 47 ms
63,872 KB
testcase_17 AC 51 ms
68,864 KB
testcase_18 AC 47 ms
63,744 KB
testcase_19 AC 223 ms
119,676 KB
testcase_20 AC 206 ms
119,800 KB
testcase_21 AC 205 ms
120,440 KB
testcase_22 AC 207 ms
119,416 KB
testcase_23 AC 206 ms
119,860 KB
testcase_24 AC 208 ms
119,664 KB
testcase_25 AC 206 ms
119,800 KB
testcase_26 AC 204 ms
119,544 KB
testcase_27 AC 152 ms
109,724 KB
testcase_28 AC 171 ms
113,688 KB
testcase_29 AC 53 ms
71,808 KB
testcase_30 AC 57 ms
75,776 KB
testcase_31 AC 73 ms
87,296 KB
testcase_32 AC 127 ms
100,600 KB
testcase_33 AC 51 ms
70,656 KB
testcase_34 AC 42 ms
55,296 KB
testcase_35 AC 41 ms
55,424 KB
testcase_36 AC 41 ms
55,936 KB
testcase_37 AC 126 ms
100,708 KB
testcase_38 AC 47 ms
59,648 KB
testcase_39 AC 129 ms
101,340 KB
testcase_40 AC 277 ms
166,736 KB
testcase_41 AC 277 ms
167,376 KB
testcase_42 AC 275 ms
169,292 KB
testcase_43 AC 278 ms
169,480 KB
testcase_44 AC 122 ms
141,092 KB
testcase_45 AC 278 ms
167,344 KB
testcase_46 AC 285 ms
169,568 KB
testcase_47 AC 298 ms
169,304 KB
testcase_48 AC 151 ms
110,692 KB
testcase_49 AC 195 ms
150,888 KB
testcase_50 AC 100 ms
100,624 KB
testcase_51 AC 42 ms
55,936 KB
testcase_52 AC 210 ms
119,540 KB
testcase_53 AC 94 ms
96,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    A = NLI()
    C = Counter(A)
    MC = C.most_common()
    if MC[0][1] >= 2:
        x = MC[0][0]
        ans = []
        cnt = 0
        for a in A:
            if a == x:
                if cnt == 0:
                    ans.append(a)
                elif cnt == 1:
                    ans.append(-a)
                else:
                    ans.append(0)
                cnt += 1
            else:
                ans.append(0)
        print("Yes")
        print(*ans)

    else:
        B = min(N, 22)
        S = set()
        T = [0] * (1<<B)
        c = -1
        d = 0
        for case in range(1<<B):
            tmp = 0
            for i in range(B):
                if (case >> i) & 1:
                    tmp += A[i]
            if tmp in S:
                c = T.index(tmp)
                d = case
                break
            else:
                S.add(tmp)
                T[case] = tmp

        if c == -1:
            print("No")
            return

        ans = []
        for i, a in enumerate(A):
            if (c>>i) & 1:
                ans.append(a)
            elif (d>>i) & 1:
                ans.append(-a)
            else:
                ans.append(0)

        print("Yes")
        print(*ans)


if __name__ == "__main__":
    main()
0