結果

問題 No.1092 modular arithmetic
ユーザー takakintakakin
提出日時 2020-07-18 22:11:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,728 KB
最終ジャッジ日時 2024-05-08 07:37:50
合計ジャッジ時間 7,713 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 140 ms
21,728 KB
testcase_02 WA -
testcase_03 AC 223 ms
20,948 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 176 ms
19,100 KB
testcase_08 AC 196 ms
20,028 KB
testcase_09 AC 179 ms
18,680 KB
testcase_10 AC 156 ms
17,540 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 92 ms
12,032 KB
testcase_14 WA -
testcase_15 AC 46 ms
11,008 KB
testcase_16 AC 83 ms
12,160 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 146 ms
16,708 KB
testcase_20 AC 233 ms
21,064 KB
testcase_21 AC 184 ms
18,584 KB
testcase_22 AC 221 ms
20,360 KB
testcase_23 AC 403 ms
18,304 KB
testcase_24 AC 136 ms
13,080 KB
testcase_25 AC 306 ms
16,508 KB
testcase_26 AC 360 ms
18,336 KB
testcase_27 AC 81 ms
11,904 KB
testcase_28 AC 306 ms
16,544 KB
testcase_29 AC 467 ms
20,024 KB
testcase_30 AC 312 ms
16,620 KB
testcase_31 AC 67 ms
11,520 KB
testcase_32 AC 289 ms
15,940 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=ans+A[i+1]
  if S[i]=="-":
    ans=ans-A[i+1]
  if S[i]=="*":
    ans=(ans*A[i+1])%p
  if S[i]=="/":
    ans=(ans*pow(A[i+1],p-2,p))%p
print(ans)
0