結果

問題 No.1017 Reiwa Sequence
ユーザー vwxyzvwxyz
提出日時 2023-07-15 06:38:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 569 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 123,168 KB
最終ジャッジ日時 2024-09-16 15:03:55
合計ジャッジ時間 55,392 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,568 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 35 ms
10,880 KB
testcase_10 AC 48 ms
11,520 KB
testcase_11 AC 34 ms
11,136 KB
testcase_12 AC 58 ms
11,904 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 37 ms
11,264 KB
testcase_15 AC 43 ms
11,648 KB
testcase_16 AC 37 ms
11,264 KB
testcase_17 AC 92 ms
13,728 KB
testcase_18 AC 37 ms
11,264 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,591 ms
74,168 KB
testcase_28 AC 1,862 ms
96,304 KB
testcase_29 AC 86 ms
13,212 KB
testcase_30 AC 132 ms
15,900 KB
testcase_31 AC 319 ms
23,788 KB
testcase_32 AC 1,213 ms
62,000 KB
testcase_33 AC 65 ms
12,288 KB
testcase_34 AC 1,209 ms
62,256 KB
testcase_35 AC 29 ms
10,624 KB
testcase_36 AC 30 ms
10,624 KB
testcase_37 AC 1,212 ms
62,260 KB
testcase_38 AC 30 ms
10,880 KB
testcase_39 AC 1,236 ms
62,260 KB
testcase_40 TLE -
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
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