結果

問題 No.1017 Reiwa Sequence
ユーザー mkawa2mkawa2
提出日時 2020-04-06 00:06:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,428 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-07-03 08:22:24
合計ジャッジ時間 16,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 60 ms
67,456 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 75 ms
75,892 KB
testcase_10 AC 80 ms
75,520 KB
testcase_11 AC 66 ms
75,392 KB
testcase_12 AC 126 ms
75,520 KB
testcase_13 AC 119 ms
75,264 KB
testcase_14 AC 69 ms
75,008 KB
testcase_15 AC 84 ms
76,024 KB
testcase_16 AC 70 ms
75,392 KB
testcase_17 AC 212 ms
75,520 KB
testcase_18 AC 73 ms
75,264 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

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return sys.stdin.readline()[:-1]

# N=22のとき、Aの部分集合の選び方は2**22=4194304通り
# それに対して、部分集合の和は150000*22=3300000通り(正確には0も入れて+1通り)
# 選び方のパターン>和のパターンということは、同じ和になる選び方が必ず存在するということ
# よって、Nが22以上のときは初めから22項だけで考え、あとは0にする
def main():
    def dfs(i=0,s=0,t=0):
        if s and s==t:return True
        if i==len(aa):return False
        if dfs(i+1,s,t):return True
        xx.append(i)
        if dfs(i+1,s+aa[i],t):return True
        xx.pop()
        yy.append(i)
        if dfs(i+1,s,t+aa[i]):return True
        yy.pop()
        return False

    n=II()
    aa=LI()
    if len(aa)>22:aa=aa[:22]
    xx=[]
    yy=[]
    if dfs():
        print("Yes")
        coe=[0]*len(aa)
        for i in xx:coe[i]=1
        for i in yy:coe[i]=-1
        for i in range(len(aa)):aa[i]*=coe[i]
        if n-len(aa)>0:aa+=[0]*(n-len(aa))
        print(*aa)
    else:print("No")

main()
0