結果

問題 No.985 Hadamard
ユーザー maspymaspy
提出日時 2020-02-12 23:52:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,216 KB
最終ジャッジ日時 2024-10-04 07:14:49
合計ジャッジ時間 18,212 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
44,212 KB
testcase_01 AC 508 ms
44,208 KB
testcase_02 AC 511 ms
44,092 KB
testcase_03 AC 512 ms
44,224 KB
testcase_04 AC 745 ms
92,592 KB
testcase_05 AC 607 ms
66,640 KB
testcase_06 AC 526 ms
44,224 KB
testcase_07 AC 472 ms
44,464 KB
testcase_08 AC 462 ms
44,472 KB
testcase_09 AC 579 ms
67,232 KB
testcase_10 AC 458 ms
44,344 KB
testcase_11 AC 470 ms
44,464 KB
testcase_12 AC 465 ms
44,348 KB
testcase_13 AC 676 ms
92,820 KB
testcase_14 AC 691 ms
91,840 KB
testcase_15 AC 677 ms
91,704 KB
testcase_16 AC 681 ms
91,660 KB
testcase_17 AC 686 ms
91,468 KB
testcase_18 AC 678 ms
92,340 KB
testcase_19 AC 688 ms
93,216 KB
testcase_20 AC 666 ms
91,756 KB
testcase_21 AC 666 ms
91,604 KB
testcase_22 AC 668 ms
91,872 KB
testcase_23 AC 660 ms
82,420 KB
testcase_24 AC 645 ms
82,844 KB
testcase_25 AC 650 ms
82,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import *
A=array(open(0).read().split(),int64)
N=A[0]
M=998244353
C=A[1:][:1<<N]
A=A[1:][1<<N:]
C=C.reshape((2,)*N)
for i in range(N):
  s=slice(None)
  t=(s,)*i+(0,)+(s,)*(N-i-1)
  u=(s,)*i+(1,)+(s,)*(N-i-1)
  C[t]+=C[u]
  C[u]=C[t]-C[u]*2
C=C.ravel()
print(sum(maximum(C*A[::2],C*A[1::2]))%M*pow((M+1)//2,int(N),M)%M)
0