結果

問題 No.1092 modular arithmetic
ユーザー trineutrontrineutron
提出日時 2020-06-24 07:18:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,852 KB
最終ジャッジ日時 2024-07-03 19:55:44
合計ジャッジ時間 7,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 126 ms
21,852 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 208 ms
21,792 KB
testcase_04 AC 175 ms
19,124 KB
testcase_05 AC 178 ms
19,164 KB
testcase_06 AC 137 ms
16,704 KB
testcase_07 AC 170 ms
19,084 KB
testcase_08 AC 187 ms
20,148 KB
testcase_09 AC 169 ms
18,668 KB
testcase_10 AC 148 ms
17,648 KB
testcase_11 AC 163 ms
18,376 KB
testcase_12 AC 138 ms
16,532 KB
testcase_13 AC 80 ms
12,160 KB
testcase_14 AC 91 ms
12,416 KB
testcase_15 AC 41 ms
11,136 KB
testcase_16 AC 73 ms
11,904 KB
testcase_17 AC 89 ms
12,504 KB
testcase_18 AC 212 ms
20,708 KB
testcase_19 AC 137 ms
16,696 KB
testcase_20 AC 217 ms
21,060 KB
testcase_21 AC 172 ms
18,568 KB
testcase_22 AC 203 ms
20,320 KB
testcase_23 AC 395 ms
18,416 KB
testcase_24 AC 131 ms
13,056 KB
testcase_25 AC 304 ms
16,620 KB
testcase_26 AC 349 ms
18,412 KB
testcase_27 AC 79 ms
11,776 KB
testcase_28 AC 297 ms
16,660 KB
testcase_29 AC 449 ms
20,148 KB
testcase_30 AC 300 ms
16,608 KB
testcase_31 AC 65 ms
11,520 KB
testcase_32 AC 281 ms
15,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, n = map(int, input().split())
a = list(map(int, 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