結果

問題 No.1092 modular arithmetic
ユーザー takakintakakin
提出日時 2020-07-18 22:11:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-05-08 07:38:52
合計ジャッジ時間 4,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 72 ms
77,440 KB
testcase_02 WA -
testcase_03 AC 101 ms
81,024 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 93 ms
77,824 KB
testcase_08 AC 94 ms
79,744 KB
testcase_09 AC 92 ms
77,696 KB
testcase_10 AC 86 ms
74,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 71 ms
71,552 KB
testcase_14 WA -
testcase_15 AC 62 ms
64,256 KB
testcase_16 AC 69 ms
70,528 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 87 ms
73,856 KB
testcase_20 AC 104 ms
81,408 KB
testcase_21 AC 91 ms
76,800 KB
testcase_22 AC 98 ms
79,488 KB
testcase_23 AC 123 ms
73,344 KB
testcase_24 AC 72 ms
64,384 KB
testcase_25 AC 105 ms
70,784 KB
testcase_26 AC 115 ms
73,216 KB
testcase_27 AC 61 ms
62,208 KB
testcase_28 AC 104 ms
70,144 KB
testcase_29 AC 132 ms
75,904 KB
testcase_30 AC 104 ms
70,528 KB
testcase_31 AC 59 ms
61,440 KB
testcase_32 AC 101 ms
69,120 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