結果

問題 No.1017 Reiwa Sequence
ユーザー titiatitia
提出日時 2020-04-03 23:11:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 950 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 122,012 KB
最終ジャッジ日時 2024-07-03 05:54:43
合計ジャッジ時間 43,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,644 KB
testcase_01 AC 40 ms
53,932 KB
testcase_02 AC 40 ms
55,368 KB
testcase_03 AC 45 ms
64,112 KB
testcase_04 AC 43 ms
55,152 KB
testcase_05 AC 42 ms
54,928 KB
testcase_06 AC 40 ms
53,868 KB
testcase_07 AC 39 ms
54,860 KB
testcase_08 AC 39 ms
54,680 KB
testcase_09 AC 74 ms
76,408 KB
testcase_10 AC 132 ms
76,416 KB
testcase_11 AC 61 ms
76,372 KB
testcase_12 AC 167 ms
76,220 KB
testcase_13 AC 188 ms
76,188 KB
testcase_14 AC 91 ms
76,332 KB
testcase_15 AC 186 ms
76,264 KB
testcase_16 AC 91 ms
76,524 KB
testcase_17 AC 444 ms
76,408 KB
testcase_18 AC 91 ms
76,340 KB
testcase_19 AC 453 ms
76,432 KB
testcase_20 AC 455 ms
76,308 KB
testcase_21 AC 440 ms
76,556 KB
testcase_22 AC 437 ms
76,112 KB
testcase_23 AC 429 ms
76,528 KB
testcase_24 AC 448 ms
76,432 KB
testcase_25 AC 427 ms
76,196 KB
testcase_26 AC 441 ms
76,092 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 170 ms
76,448 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 125 ms
106,512 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 140 ms
122,012 KB
testcase_50 WA -
testcase_51 AC 42 ms
53,888 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(13,N)
from itertools import product
ITER=product([-1,0,1],repeat=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
else:
    print("No")
    

0