結果

問題 No.2653 [Cherry 6th Tune] Re: start! (Make it Zero!)
ユーザー ゼットゼット
提出日時 2024-02-23 22:54:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 887 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 119,656 KB
最終ジャッジ日時 2024-09-29 08:10:17
合計ジャッジ時間 15,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 187 ms
77,424 KB
testcase_02 AC 86 ms
76,776 KB
testcase_03 AC 83 ms
75,904 KB
testcase_04 AC 104 ms
90,880 KB
testcase_05 AC 101 ms
89,088 KB
testcase_06 AC 381 ms
80,480 KB
testcase_07 AC 406 ms
80,804 KB
testcase_08 AC 99 ms
112,436 KB
testcase_09 AC 95 ms
106,752 KB
testcase_10 AC 100 ms
111,488 KB
testcase_11 AC 103 ms
101,844 KB
testcase_12 AC 96 ms
107,008 KB
testcase_13 AC 133 ms
77,264 KB
testcase_14 AC 154 ms
77,056 KB
testcase_15 AC 133 ms
77,056 KB
testcase_16 AC 146 ms
77,056 KB
testcase_17 AC 145 ms
77,056 KB
testcase_18 AC 148 ms
77,184 KB
testcase_19 AC 147 ms
77,184 KB
testcase_20 AC 145 ms
76,928 KB
testcase_21 AC 149 ms
76,928 KB
testcase_22 AC 147 ms
77,056 KB
testcase_23 AC 113 ms
77,312 KB
testcase_24 AC 119 ms
76,660 KB
testcase_25 AC 114 ms
76,928 KB
testcase_26 AC 121 ms
77,496 KB
testcase_27 AC 108 ms
76,416 KB
testcase_28 AC 116 ms
77,696 KB
testcase_29 AC 111 ms
76,544 KB
testcase_30 AC 114 ms
76,496 KB
testcase_31 AC 109 ms
76,416 KB
testcase_32 AC 115 ms
76,840 KB
testcase_33 AC 130 ms
91,904 KB
testcase_34 AC 127 ms
98,816 KB
testcase_35 AC 134 ms
90,032 KB
testcase_36 AC 125 ms
87,560 KB
testcase_37 AC 132 ms
99,832 KB
testcase_38 AC 134 ms
94,916 KB
testcase_39 AC 122 ms
89,972 KB
testcase_40 AC 130 ms
93,952 KB
testcase_41 AC 122 ms
91,520 KB
testcase_42 AC 122 ms
94,976 KB
testcase_43 AC 343 ms
77,880 KB
testcase_44 AC 352 ms
78,092 KB
testcase_45 AC 380 ms
80,548 KB
testcase_46 AC 340 ms
77,896 KB
testcase_47 AC 342 ms
77,996 KB
testcase_48 AC 371 ms
78,488 KB
testcase_49 AC 408 ms
79,316 KB
testcase_50 AC 392 ms
78,632 KB
testcase_51 AC 348 ms
77,884 KB
testcase_52 AC 375 ms
78,656 KB
testcase_53 AC 115 ms
105,344 KB
testcase_54 AC 114 ms
107,776 KB
testcase_55 AC 139 ms
119,656 KB
testcase_56 AC 109 ms
105,472 KB
testcase_57 AC 117 ms
105,856 KB
testcase_58 AC 116 ms
106,752 KB
testcase_59 AC 127 ms
107,520 KB
testcase_60 AC 112 ms
106,240 KB
testcase_61 AC 104 ms
109,348 KB
testcase_62 AC 100 ms
106,240 KB
testcase_63 AC 126 ms
77,272 KB
testcase_64 AC 139 ms
77,184 KB
testcase_65 AC 140 ms
76,672 KB
testcase_66 AC 143 ms
76,928 KB
testcase_67 AC 142 ms
77,056 KB
testcase_68 AC 143 ms
77,184 KB
testcase_69 AC 153 ms
76,672 KB
testcase_70 AC 143 ms
77,184 KB
testcase_71 AC 153 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  N,M=map(int,input().split())
  A=list(map(int,input().split()))
  L=[]
  mod=M
  for i in range(N):
    if A[i]==-1:
      L.append(i)
  if len(L)==0:
    if (sum(A))%M!=0:
      print(0)
    else:
      result=N
      x=0
      for i in range(N):
        x+=A[i]
        x%=mod
        if x==0:
          result-=1
      print(result)
    continue
  mod=998244353
  count=len(L)
  p1=pow(M,count-1,mod)
  p2=pow(M,count-2,mod)
  result=p1*N
  result%=mod
  pos=L[0]
  x=0
  for i in range(pos):
    x+=A[i]
    x%=M
    if x==0:
      result-=p1
      result%=mod
  for i in range(len(L)-1):
    pos1=L[i]
    pos2=L[i+1]
    result-=(pos2-pos1)*p2
    result%=mod
  T={}
  T[0]=1
  x=0
  pos=L[-1]
  for i in range(pos+1,N):
    x+=A[i]
    x%=M
    if not x in T:
      T[x]=1
    else:
      T[x]+=1
  result-=T[x]*p1
  result%=mod
  print(result)
0