結果
問題 | No.1017 Reiwa Sequence |
ユーザー | vwxyz |
提出日時 | 2023-07-15 06:38:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 348 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 120,352 KB |
最終ジャッジ日時 | 2024-09-16 15:02:54 |
合計ジャッジ時間 | 57,299 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,692 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | AC | 29 ms
10,880 KB |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 34 ms
11,136 KB |
testcase_10 | AC | 47 ms
11,648 KB |
testcase_11 | AC | 34 ms
11,136 KB |
testcase_12 | AC | 57 ms
12,032 KB |
testcase_13 | AC | 32 ms
10,880 KB |
testcase_14 | AC | 37 ms
11,264 KB |
testcase_15 | AC | 44 ms
11,648 KB |
testcase_16 | AC | 38 ms
11,136 KB |
testcase_17 | AC | 91 ms
13,852 KB |
testcase_18 | AC | 36 ms
11,008 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,571 ms
74,164 KB |
testcase_28 | AC | 1,880 ms
96,248 KB |
testcase_29 | AC | 85 ms
13,340 KB |
testcase_30 | AC | 135 ms
16,024 KB |
testcase_31 | AC | 314 ms
23,788 KB |
testcase_32 | AC | 1,219 ms
62,384 KB |
testcase_33 | AC | 64 ms
12,288 KB |
testcase_34 | AC | 1,211 ms
62,388 KB |
testcase_35 | AC | 29 ms
10,752 KB |
testcase_36 | AC | 29 ms
10,880 KB |
testcase_37 | AC | 1,222 ms
62,132 KB |
testcase_38 | AC | 29 ms
10,624 KB |
testcase_39 | AC | 1,221 ms
62,256 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 | -- | - |
ソースコード
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)