結果

問題 No.1017 Reiwa Sequence
ユーザー vwxyzvwxyz
提出日時 2023-07-15 06:40:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,472 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 212,436 KB
最終ジャッジ日時 2024-09-16 15:07:00
合計ジャッジ時間 50,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,116 KB
testcase_01 AC 41 ms
54,320 KB
testcase_02 AC 41 ms
54,068 KB
testcase_03 AC 49 ms
63,584 KB
testcase_04 AC 40 ms
54,040 KB
testcase_05 AC 40 ms
54,380 KB
testcase_06 AC 40 ms
53,920 KB
testcase_07 AC 42 ms
54,012 KB
testcase_08 AC 39 ms
55,708 KB
testcase_09 AC 70 ms
72,652 KB
testcase_10 AC 93 ms
77,260 KB
testcase_11 AC 79 ms
77,124 KB
testcase_12 AC 88 ms
77,188 KB
testcase_13 AC 58 ms
67,080 KB
testcase_14 AC 82 ms
77,000 KB
testcase_15 AC 92 ms
77,344 KB
testcase_16 AC 78 ms
77,240 KB
testcase_17 AC 106 ms
79,560 KB
testcase_18 AC 82 ms
76,988 KB
testcase_19 AC 714 ms
204,432 KB
testcase_20 AC 682 ms
204,312 KB
testcase_21 AC 664 ms
204,424 KB
testcase_22 AC 641 ms
204,244 KB
testcase_23 AC 639 ms
204,292 KB
testcase_24 AC 648 ms
204,332 KB
testcase_25 AC 632 ms
204,360 KB
testcase_26 AC 624 ms
204,456 KB
testcase_27 AC 504 ms
160,672 KB
testcase_28 AC 545 ms
176,284 KB
testcase_29 AC 100 ms
78,660 KB
testcase_30 AC 115 ms
80,364 KB
testcase_31 AC 166 ms
89,644 KB
testcase_32 AC 380 ms
136,980 KB
testcase_33 AC 90 ms
77,528 KB
testcase_34 AC 390 ms
137,268 KB
testcase_35 AC 40 ms
54,740 KB
testcase_36 AC 44 ms
61,124 KB
testcase_37 AC 385 ms
137,204 KB
testcase_38 AC 40 ms
55,316 KB
testcase_39 AC 382 ms
136,916 KB
testcase_40 AC 1,366 ms
212,276 KB
testcase_41 AC 1,472 ms
211,936 KB
testcase_42 AC 1,240 ms
211,764 KB
testcase_43 AC 1,465 ms
212,084 KB
testcase_44 AC 82 ms
91,624 KB
testcase_45 AC 1,238 ms
211,744 KB
testcase_46 AC 1,264 ms
212,436 KB
testcase_47 AC 1,279 ms
212,352 KB
testcase_48 AC 132 ms
98,360 KB
testcase_49 AC 98 ms
102,472 KB
testcase_50 AC 99 ms
102,864 KB
testcase_51 AC 40 ms
54,252 KB
testcase_52 AC 652 ms
204,196 KB
testcase_53 AC 248 ms
106,408 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(25,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<25 and bit0&1<<i and not bit1&1<<i:
        A[i]*=-1
    elif i<25 and not bit0&1<<i and bit1&1<<i:
        A[i]*=1
    else:
        A[i]*=0
print("Yes")
print(*A)
0