結果

問題 No.1239 Multiplication -2
ユーザー marroncastlemarroncastle
提出日時 2020-09-26 01:53:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,180 KB
最終ジャッジ日時 2024-06-28 10:10:26
合計ジャッジ時間 6,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,404 KB
testcase_01 AC 39 ms
52,544 KB
testcase_02 AC 39 ms
53,800 KB
testcase_03 AC 52 ms
62,932 KB
testcase_04 AC 51 ms
63,072 KB
testcase_05 AC 52 ms
62,956 KB
testcase_06 AC 40 ms
53,632 KB
testcase_07 AC 43 ms
53,864 KB
testcase_08 AC 39 ms
52,488 KB
testcase_09 AC 38 ms
52,964 KB
testcase_10 AC 39 ms
52,772 KB
testcase_11 AC 38 ms
53,100 KB
testcase_12 AC 39 ms
52,868 KB
testcase_13 AC 39 ms
52,940 KB
testcase_14 AC 39 ms
52,388 KB
testcase_15 AC 194 ms
83,224 KB
testcase_16 AC 230 ms
90,364 KB
testcase_17 AC 255 ms
103,568 KB
testcase_18 AC 268 ms
103,632 KB
testcase_19 AC 135 ms
99,480 KB
testcase_20 AC 234 ms
104,180 KB
testcase_21 AC 267 ms
103,836 KB
testcase_22 AC 207 ms
103,756 KB
testcase_23 AC 208 ms
95,280 KB
testcase_24 AC 210 ms
95,408 KB
testcase_25 AC 60 ms
80,884 KB
testcase_26 AC 169 ms
87,560 KB
testcase_27 AC 143 ms
81,680 KB
testcase_28 AC 265 ms
100,768 KB
testcase_29 AC 285 ms
100,716 KB
testcase_30 AC 168 ms
85,556 KB
testcase_31 AC 191 ms
92,484 KB
testcase_32 AC 292 ms
104,156 KB
testcase_33 AC 290 ms
95,360 KB
testcase_34 AC 246 ms
93,272 KB
testcase_35 AC 161 ms
83,476 KB
testcase_36 AC 168 ms
82,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N = int(input())
A = list(map(int, input().split()))
ans = 0
for i in range(1,N-1):
  if abs(A[i])==2:
    l_p = pow(2,i-1,mod)
    l_m = 0
    cuml = 1
    for j in range(i-1,0,-1):
      if abs(A[j])!=1:
        break
      cuml *= A[j]
      if cuml == 1:
        l_p += pow(2,j-1,mod)
      else:
        l_m += pow(2,j-1,mod)
    r_p = pow(2,N-2-i,mod)
    r_m = 0
    cumr = 1
    for j in range(i+1,N-1):
      if abs(A[j])!=1:
        break
      cumr *= A[j]
      if cumr == 1:
        r_p += pow(2,N-2-j,mod)
      else:
        r_m += pow(2,N-2-j,mod)
    if A[i]==2:
      ans += l_p * r_m + l_m * r_p
    else:
      ans += l_p * r_p + l_m * r_m
    ans %= mod
cum = 1
for i in range(N):
  cum *= A[i]
  if cum == -2:
    if i<N-1:
      ans += pow(2,N-2-i,mod)
    else:
      ans += pow(2,N-1-i,mod)
  if abs(cum)>2 or cum==0:
    break
cum = 1
for i in range(N-1,0,-1):
  cum *= A[i]
  if cum == -2:
    ans += pow(2,i-1,mod)
  if abs(cum)>2 or cum==0:
    break
ans %= mod
ans *= pow(pow(2,N-1,mod),mod-2,mod)
print(ans%mod)

0