結果

問題 No.1017 Reiwa Sequence
ユーザー titiatitia
提出日時 2020-04-03 23:10:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 950 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 83,676 KB
最終ジャッジ日時 2024-07-03 05:49:51
合計ジャッジ時間 19,423 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
63,068 KB
testcase_01 AC 47 ms
54,016 KB
testcase_02 AC 47 ms
53,248 KB
testcase_03 AC 78 ms
63,104 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 44 ms
53,760 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 42 ms
54,004 KB
testcase_08 AC 46 ms
53,376 KB
testcase_09 AC 94 ms
75,776 KB
testcase_10 AC 739 ms
76,112 KB
testcase_11 AC 72 ms
75,776 KB
testcase_12 AC 588 ms
76,160 KB
testcase_13 AC 430 ms
76,160 KB
testcase_14 AC 104 ms
76,288 KB
testcase_15 AC 212 ms
75,776 KB
testcase_16 AC 113 ms
76,416 KB
testcase_17 AC 1,295 ms
76,160 KB
testcase_18 AC 112 ms
76,568 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

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(15,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