結果

問題 No.1092 modular arithmetic
ユーザー ttrttr
提出日時 2020-06-28 16:03:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,856 KB
最終ジャッジ日時 2024-07-07 19:20:20
合計ジャッジ時間 8,289 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 134 ms
21,856 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 218 ms
21,556 KB
testcase_04 AC 183 ms
18,872 KB
testcase_05 AC 186 ms
19,044 KB
testcase_06 AC 143 ms
16,452 KB
testcase_07 AC 173 ms
18,960 KB
testcase_08 AC 193 ms
19,768 KB
testcase_09 AC 177 ms
18,796 KB
testcase_10 AC 157 ms
17,656 KB
testcase_11 AC 169 ms
18,028 KB
testcase_12 AC 144 ms
16,660 KB
testcase_13 AC 87 ms
11,904 KB
testcase_14 AC 96 ms
12,288 KB
testcase_15 AC 44 ms
10,880 KB
testcase_16 AC 78 ms
11,776 KB
testcase_17 AC 99 ms
12,248 KB
testcase_18 AC 219 ms
20,712 KB
testcase_19 AC 143 ms
16,440 KB
testcase_20 AC 226 ms
20,812 KB
testcase_21 AC 180 ms
18,568 KB
testcase_22 AC 213 ms
20,056 KB
testcase_23 AC 398 ms
18,164 KB
testcase_24 AC 135 ms
13,056 KB
testcase_25 AC 305 ms
16,356 KB
testcase_26 AC 359 ms
18,452 KB
testcase_27 AC 81 ms
11,648 KB
testcase_28 AC 303 ms
16,668 KB
testcase_29 AC 460 ms
19,820 KB
testcase_30 AC 310 ms
16,480 KB
testcase_31 AC 66 ms
11,520 KB
testcase_32 AC 284 ms
15,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,N = map(int, input().split())
A = [int(a) for a in input().split()]
S = input()

ans = A[0]
for i in range(N-1):
    if S[i] == "+":
        ans += A[i+1]
    elif S[i] == "-":
        ans -= A[i+1]
    elif S[i] == "*":
        ans *= A[i+1]
    else:
        ans *= pow(A[i+1], P-2, P)
    ans %= P
print(ans)
0