結果

問題 No.1017 Reiwa Sequence
ユーザー titiatitia
提出日時 2020-07-31 02:40:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,362 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 128,128 KB
最終ジャッジ日時 2024-07-05 05:42:37
合計ジャッジ時間 35,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
75,136 KB
testcase_01 AC 50 ms
75,136 KB
testcase_02 AC 49 ms
75,264 KB
testcase_03 AC 55 ms
82,432 KB
testcase_04 AC 50 ms
75,264 KB
testcase_05 AC 49 ms
75,904 KB
testcase_06 AC 49 ms
75,136 KB
testcase_07 AC 50 ms
75,776 KB
testcase_08 AC 48 ms
75,520 KB
testcase_09 AC 56 ms
83,200 KB
testcase_10 AC 57 ms
83,456 KB
testcase_11 AC 57 ms
83,328 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 57 ms
83,328 KB
testcase_15 AC 57 ms
83,712 KB
testcase_16 AC 57 ms
83,328 KB
testcase_17 AC 59 ms
83,840 KB
testcase_18 AC 57 ms
83,328 KB
testcase_19 AC 172 ms
98,944 KB
testcase_20 AC 168 ms
98,944 KB
testcase_21 AC 169 ms
99,200 KB
testcase_22 AC 168 ms
99,456 KB
testcase_23 AC 172 ms
98,944 KB
testcase_24 AC 169 ms
98,944 KB
testcase_25 AC 166 ms
98,944 KB
testcase_26 AC 193 ms
98,944 KB
testcase_27 AC 140 ms
98,816 KB
testcase_28 AC 146 ms
98,816 KB
testcase_29 AC 59 ms
83,712 KB
testcase_30 AC 62 ms
84,480 KB
testcase_31 AC 71 ms
86,272 KB
testcase_32 AC 114 ms
95,744 KB
testcase_33 AC 59 ms
83,456 KB
testcase_34 AC 118 ms
95,488 KB
testcase_35 AC 51 ms
75,264 KB
testcase_36 AC 57 ms
81,536 KB
testcase_37 AC 120 ms
95,488 KB
testcase_38 AC 51 ms
75,776 KB
testcase_39 AC 116 ms
95,744 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 51 ms
75,520 KB
testcase_52 AC 166 ms
99,328 KB
testcase_53 AC 83 ms
89,344 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