結果

問題 No.1017 Reiwa Sequence
ユーザー vwxyzvwxyz
提出日時 2023-07-15 06:38:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,641 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 212,064 KB
最終ジャッジ日時 2024-09-16 15:05:13
合計ジャッジ時間 52,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 45 ms
53,248 KB
testcase_02 AC 43 ms
53,248 KB
testcase_03 AC 52 ms
61,568 KB
testcase_04 AC 44 ms
53,504 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 44 ms
53,632 KB
testcase_07 AC 44 ms
53,504 KB
testcase_08 AC 45 ms
53,376 KB
testcase_09 AC 78 ms
71,552 KB
testcase_10 AC 102 ms
76,928 KB
testcase_11 AC 92 ms
76,672 KB
testcase_12 AC 104 ms
76,928 KB
testcase_13 AC 67 ms
65,920 KB
testcase_14 AC 94 ms
76,928 KB
testcase_15 AC 104 ms
77,184 KB
testcase_16 AC 94 ms
76,672 KB
testcase_17 AC 120 ms
80,256 KB
testcase_18 AC 93 ms
76,928 KB
testcase_19 AC 728 ms
204,080 KB
testcase_20 AC 682 ms
204,204 KB
testcase_21 AC 737 ms
203,948 KB
testcase_22 AC 717 ms
204,204 KB
testcase_23 AC 692 ms
204,200 KB
testcase_24 AC 738 ms
203,952 KB
testcase_25 AC 693 ms
204,332 KB
testcase_26 AC 703 ms
204,460 KB
testcase_27 AC 503 ms
160,680 KB
testcase_28 AC 593 ms
176,328 KB
testcase_29 AC 115 ms
78,336 KB
testcase_30 AC 126 ms
80,256 KB
testcase_31 AC 182 ms
89,384 KB
testcase_32 AC 430 ms
136,984 KB
testcase_33 AC 110 ms
77,184 KB
testcase_34 AC 443 ms
136,876 KB
testcase_35 AC 44 ms
53,504 KB
testcase_36 AC 49 ms
59,392 KB
testcase_37 AC 462 ms
136,884 KB
testcase_38 AC 43 ms
53,888 KB
testcase_39 AC 435 ms
137,136 KB
testcase_40 AC 1,629 ms
211,872 KB
testcase_41 AC 1,520 ms
211,760 KB
testcase_42 AC 1,489 ms
211,468 KB
testcase_43 AC 1,641 ms
212,064 KB
testcase_44 AC 94 ms
91,520 KB
testcase_45 AC 1,545 ms
211,868 KB
testcase_46 AC 1,389 ms
211,728 KB
testcase_47 AC 1,501 ms
211,716 KB
testcase_48 AC 151 ms
98,176 KB
testcase_49 AC 112 ms
101,888 KB
testcase_50 AC 111 ms
102,528 KB
testcase_51 AC 44 ms
53,504 KB
testcase_52 AC 710 ms
204,332 KB
testcase_53 AC 274 ms
106,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import defaultdict

N=int(readline())
A=list(map(int,readline().split()))
dct=defaultdict(list)
bit=1
while bit<1<<len(A):
    S=sum(A[i] for i in range(min(30,len(A))) if bit&1<<i)
    dct[S].append(bit)
    if len(dct[S])>=2:
        break
    bit+=1
else:
    print("No")
    exit()
bit0,bit1=dct[S][0],dct[S][1]
for i in range(len(A)):
    if i<30 and bit0&1<<i and not bit1&1<<i:
        A[i]*=-1
    elif i<30 and not bit0&1<<i and bit1&1<<i:
        A[i]*=1
    else:
        A[i]*=0
print("Yes")
print(*A)
0