結果

問題 No.1017 Reiwa Sequence
ユーザー titiatitia
提出日時 2020-04-03 23:15:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,268 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,600 KB
最終ジャッジ日時 2024-07-03 06:07:52
合計ジャッジ時間 50,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 46 ms
53,120 KB
testcase_03 AC 56 ms
63,104 KB
testcase_04 AC 46 ms
53,376 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 43 ms
53,632 KB
testcase_08 AC 48 ms
53,504 KB
testcase_09 AC 90 ms
76,416 KB
testcase_10 AC 133 ms
76,544 KB
testcase_11 AC 71 ms
76,416 KB
testcase_12 AC 91 ms
76,288 KB
testcase_13 AC 80 ms
75,904 KB
testcase_14 AC 100 ms
75,904 KB
testcase_15 AC 190 ms
76,288 KB
testcase_16 AC 99 ms
76,032 KB
testcase_17 AC 1,113 ms
76,416 KB
testcase_18 AC 97 ms
75,776 KB
testcase_19 AC 1,185 ms
75,776 KB
testcase_20 AC 1,189 ms
76,160 KB
testcase_21 AC 1,186 ms
76,288 KB
testcase_22 AC 1,189 ms
76,544 KB
testcase_23 AC 1,217 ms
76,288 KB
testcase_24 AC 1,184 ms
76,160 KB
testcase_25 AC 1,239 ms
76,160 KB
testcase_26 AC 1,191 ms
76,288 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 156 ms
76,160 KB
testcase_30 AC 612 ms
76,544 KB
testcase_31 AC 232 ms
76,288 KB
testcase_32 AC 209 ms
75,904 KB
testcase_33 AC 86 ms
76,544 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 425 ms
76,288 KB
testcase_39 WA -
testcase_40 AC 127 ms
121,216 KB
testcase_41 AC 122 ms
120,960 KB
testcase_42 AC 121 ms
116,224 KB
testcase_43 AC 117 ms
116,224 KB
testcase_44 AC 121 ms
121,244 KB
testcase_45 AC 121 ms
121,080 KB
testcase_46 AC 119 ms
115,840 KB
testcase_47 AC 119 ms
116,340 KB
testcase_48 WA -
testcase_49 AC 149 ms
121,600 KB
testcase_50 WA -
testcase_51 AC 40 ms
54,016 KB
testcase_52 WA -
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
A=[abs(a) for a in A]

from collections import Counter
C=Counter(A)

x=0
for c in C:
    if C[c]>1:
        x=c
        break

if x!=0:
    flag=0

    ANS=[]
    for a in A:
        if a!=x or flag==2:
            ANS.append(a)
        else:
            if flag==0:
                ANS.append(x)
                flag+=1
            elif flag==1:
                ANS.append(-x)
                flag+=1
                
    print("Yes")
    print(*ANS)
    sys.exit()


M=min(14,N)
from itertools import product
ITER=product([-1,0,1],repeat=M)
SET=set(A[M:])

for ite in ITER:
    if max(ite)==min(ite)==0:
        continue
    S=0
    for i in range(M):
        S+=A[i]*ite[i]

    if S==0:
        ANS=[]
        for i in range(M):
            ANS.append(ite[i]*A[i])
        ANS+=[0]*abs(N-M)
        print("Yes")
        print(*ANS)
        break
    
    if S in SET:
        ANS=[]
        for i in range(M):
            ANS.append(ite[i]*A[i])
        ANS+=[0]*abs(N-M)

        for i in range(N):
            if A[i]==S:
                ANS[i]=-S
                break
        print("Yes")
        print(*ANS)
        break
                     
else:
    print("No")
    

0