結果

問題 No.1092 modular arithmetic
ユーザー vwxyzvwxyz
提出日時 2024-07-17 09:57:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,720 KB
最終ジャッジ日時 2024-07-17 09:57:38
合計ジャッジ時間 7,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 121 ms
21,720 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 195 ms
20,808 KB
testcase_04 AC 165 ms
18,872 KB
testcase_05 AC 170 ms
19,172 KB
testcase_06 AC 129 ms
16,576 KB
testcase_07 AC 156 ms
19,212 KB
testcase_08 AC 171 ms
19,892 KB
testcase_09 AC 168 ms
18,844 KB
testcase_10 AC 143 ms
17,660 KB
testcase_11 AC 157 ms
18,388 KB
testcase_12 AC 134 ms
16,668 KB
testcase_13 AC 71 ms
12,160 KB
testcase_14 AC 79 ms
12,288 KB
testcase_15 AC 39 ms
10,880 KB
testcase_16 AC 65 ms
12,032 KB
testcase_17 AC 79 ms
12,380 KB
testcase_18 AC 201 ms
20,700 KB
testcase_19 AC 134 ms
16,564 KB
testcase_20 AC 202 ms
20,920 KB
testcase_21 AC 163 ms
18,444 KB
testcase_22 AC 191 ms
20,344 KB
testcase_23 AC 376 ms
18,420 KB
testcase_24 AC 131 ms
12,928 KB
testcase_25 AC 291 ms
16,500 KB
testcase_26 AC 339 ms
18,320 KB
testcase_27 AC 79 ms
11,904 KB
testcase_28 AC 287 ms
16,484 KB
testcase_29 AC 462 ms
20,272 KB
testcase_30 AC 294 ms
16,736 KB
testcase_31 AC 62 ms
11,392 KB
testcase_32 AC 274 ms
15,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,N=map(int,input().split())
A=list(map(int,input().split()))
S=input()
ans=A[0]
for a,s in zip(A[1:],S):
    if s=="+":
        ans+=a
    elif s=="-":
        ans-=a
    elif s=="*":
        ans*=a
    else:
        ans*=pow(a,P-2,P)
    ans%=P
print(ans)
0