結果

問題 No.1092 modular arithmetic
ユーザー 👑 rin204rin204
提出日時 2020-08-13 08:23:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,848 KB
最終ジャッジ日時 2024-10-09 19:01:54
合計ジャッジ時間 7,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 105 ms
21,848 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 192 ms
20,792 KB
testcase_04 AC 163 ms
18,876 KB
testcase_05 AC 168 ms
19,044 KB
testcase_06 AC 129 ms
16,448 KB
testcase_07 AC 159 ms
18,976 KB
testcase_08 AC 174 ms
19,896 KB
testcase_09 AC 160 ms
18,672 KB
testcase_10 AC 140 ms
17,524 KB
testcase_11 AC 155 ms
18,256 KB
testcase_12 AC 132 ms
16,660 KB
testcase_13 AC 70 ms
12,160 KB
testcase_14 AC 77 ms
12,288 KB
testcase_15 AC 39 ms
10,880 KB
testcase_16 AC 65 ms
12,032 KB
testcase_17 AC 80 ms
12,380 KB
testcase_18 AC 199 ms
20,576 KB
testcase_19 AC 131 ms
16,568 KB
testcase_20 AC 207 ms
20,924 KB
testcase_21 AC 166 ms
18,440 KB
testcase_22 AC 199 ms
20,216 KB
testcase_23 AC 381 ms
18,288 KB
testcase_24 AC 129 ms
12,800 KB
testcase_25 AC 293 ms
16,628 KB
testcase_26 AC 337 ms
18,188 KB
testcase_27 AC 78 ms
11,904 KB
testcase_28 AC 289 ms
16,668 KB
testcase_29 AC 438 ms
20,012 KB
testcase_30 AC 293 ms
16,612 KB
testcase_31 AC 63 ms
11,392 KB
testcase_32 AC 273 ms
15,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, n = map(int, input().split())
alst = list(map(int, input().split()))
s = input()
ans = alst[0]

for a, ope in zip(alst[1:], s):
    if ope == "+":
        ans += a
    elif ope == "-":
        ans -= a
    elif ope == "*":
        ans *= a
    else:
        ans *= pow(a, p - 2, p)

    ans %= p
print(ans)
0