結果

問題 No.1092 modular arithmetic
ユーザー takakintakakin
提出日時 2020-07-18 22:26:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,856 KB
最終ジャッジ日時 2024-05-08 07:59:01
合計ジャッジ時間 7,513 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 145 ms
21,856 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 225 ms
20,952 KB
testcase_04 AC 192 ms
19,020 KB
testcase_05 AC 197 ms
19,060 KB
testcase_06 AC 147 ms
16,724 KB
testcase_07 AC 185 ms
18,980 KB
testcase_08 AC 196 ms
20,040 KB
testcase_09 AC 182 ms
18,692 KB
testcase_10 AC 163 ms
17,804 KB
testcase_11 AC 175 ms
18,400 KB
testcase_12 AC 152 ms
16,808 KB
testcase_13 AC 99 ms
12,288 KB
testcase_14 AC 109 ms
12,116 KB
testcase_15 AC 47 ms
11,136 KB
testcase_16 AC 86 ms
11,904 KB
testcase_17 AC 111 ms
12,128 KB
testcase_18 AC 227 ms
20,596 KB
testcase_19 AC 150 ms
16,588 KB
testcase_20 AC 235 ms
20,948 KB
testcase_21 AC 189 ms
18,592 KB
testcase_22 AC 220 ms
20,496 KB
testcase_23 AC 404 ms
18,312 KB
testcase_24 AC 137 ms
12,960 KB
testcase_25 AC 309 ms
16,520 KB
testcase_26 AC 358 ms
18,344 KB
testcase_27 AC 86 ms
11,904 KB
testcase_28 AC 303 ms
16,684 KB
testcase_29 AC 453 ms
20,032 KB
testcase_30 AC 312 ms
16,624 KB
testcase_31 AC 65 ms
11,392 KB
testcase_32 AC 287 ms
15,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
p,n=map(int,input().split())
A=[int(i) for i in input().split()]
S=input()
ans=A[0]
for i in range(n-1):
  if S[i]=="+":
    ans+=A[i+1]
  if S[i]=="-":
    ans-=A[i+1]
  if S[i]=="*":
    ans*=A[i+1]
  if S[i]=="/":
    ans=ans*pow(A[i+1],p-2,p)
  ans%=p
print(ans)
0