結果

問題 No.1017 Reiwa Sequence
ユーザー titiatitia
提出日時 2020-07-31 02:43:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 1,396 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 128,256 KB
最終ジャッジ日時 2024-07-05 05:46:56
合計ジャッジ時間 37,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
75,788 KB
testcase_01 AC 46 ms
75,520 KB
testcase_02 AC 46 ms
75,776 KB
testcase_03 AC 52 ms
82,432 KB
testcase_04 AC 46 ms
75,776 KB
testcase_05 AC 45 ms
75,648 KB
testcase_06 AC 46 ms
75,776 KB
testcase_07 AC 45 ms
75,136 KB
testcase_08 AC 46 ms
75,648 KB
testcase_09 AC 52 ms
83,200 KB
testcase_10 AC 54 ms
83,584 KB
testcase_11 AC 52 ms
83,328 KB
testcase_12 AC 53 ms
83,484 KB
testcase_13 AC 51 ms
83,072 KB
testcase_14 AC 53 ms
84,096 KB
testcase_15 AC 51 ms
83,456 KB
testcase_16 AC 51 ms
83,584 KB
testcase_17 AC 56 ms
83,968 KB
testcase_18 AC 50 ms
83,840 KB
testcase_19 AC 176 ms
98,816 KB
testcase_20 AC 188 ms
99,136 KB
testcase_21 AC 179 ms
98,816 KB
testcase_22 AC 183 ms
99,072 KB
testcase_23 AC 183 ms
98,944 KB
testcase_24 AC 180 ms
99,328 KB
testcase_25 AC 170 ms
98,944 KB
testcase_26 AC 165 ms
98,688 KB
testcase_27 AC 137 ms
99,408 KB
testcase_28 AC 142 ms
99,072 KB
testcase_29 AC 58 ms
84,096 KB
testcase_30 AC 57 ms
84,352 KB
testcase_31 AC 66 ms
86,272 KB
testcase_32 AC 109 ms
95,872 KB
testcase_33 AC 54 ms
83,968 KB
testcase_34 AC 117 ms
95,928 KB
testcase_35 AC 45 ms
75,648 KB
testcase_36 AC 50 ms
81,536 KB
testcase_37 AC 114 ms
95,616 KB
testcase_38 AC 45 ms
75,264 KB
testcase_39 AC 116 ms
95,872 KB
testcase_40 AC 281 ms
112,000 KB
testcase_41 AC 279 ms
112,204 KB
testcase_42 AC 286 ms
110,848 KB
testcase_43 AC 279 ms
110,656 KB
testcase_44 AC 84 ms
116,224 KB
testcase_45 AC 278 ms
112,256 KB
testcase_46 AC 274 ms
110,552 KB
testcase_47 AC 265 ms
110,828 KB
testcase_48 AC 109 ms
128,256 KB
testcase_49 AC 99 ms
127,744 KB
testcase_50 AC 102 ms
127,664 KB
testcase_51 AC 44 ms
75,136 KB
testcase_52 AC 167 ms
99,200 KB
testcase_53 AC 77 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

if N>=22:
    X=[-1]*(150000*20+1)
    for i in range(1,1<<20):
        SUM=0
        for j in range(20):
            if (1<<j) & i !=0:
                SUM+=A[j]
        if X[SUM]==-1:
            X[SUM]=i
        else:
            print("Yes")
            ANS=[]
            k=X[SUM]
            l=i
            for j in range(20):
                if (1<<j) & k == 0 and (1<<j) & l != 0:
                    ANS.append(A[j])
                elif (1<<j) & k != 0 and (1<<j) & l == 0:
                    ANS.append(-A[j])
                else:
                    ANS.append(0)
            print(*(ANS+[0]*(N-20)))
            sys.exit()

else:
    X=[-1]*(150000*20+1)
    for i in range(1,1<<N):
        SUM=0
        for j in range(N):
            if (1<<j) & i !=0:
                SUM+=A[j]
        if X[SUM]==-1:
            X[SUM]=i
        else:
            print("Yes")
            ANS=[]
            k=X[SUM]
            l=i
            for j in range(N):
                if (1<<j) & k == 0 and (1<<j) & l != 0:
                    ANS.append(A[j])
                elif (1<<j) & k != 0 and (1<<j) & l == 0:
                    ANS.append(-A[j])
                else:
                    ANS.append(0)
            print(*ANS)
            sys.exit()
    print("No")
    
    

            
        
0