結果

問題 No.1092 modular arithmetic
ユーザー lloyzlloyz
提出日時 2022-08-30 07:19:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,852 KB
最終ジャッジ日時 2024-11-07 02:43:01
合計ジャッジ時間 8,203 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 120 ms
21,852 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 212 ms
21,664 KB
testcase_04 AC 171 ms
18,996 KB
testcase_05 AC 176 ms
18,964 KB
testcase_06 AC 136 ms
16,576 KB
testcase_07 AC 164 ms
18,956 KB
testcase_08 AC 183 ms
20,020 KB
testcase_09 AC 168 ms
18,668 KB
testcase_10 AC 147 ms
17,472 KB
testcase_11 AC 160 ms
18,380 KB
testcase_12 AC 139 ms
16,660 KB
testcase_13 AC 79 ms
12,032 KB
testcase_14 AC 88 ms
12,288 KB
testcase_15 AC 42 ms
11,008 KB
testcase_16 AC 73 ms
11,904 KB
testcase_17 AC 90 ms
12,288 KB
testcase_18 AC 208 ms
20,576 KB
testcase_19 AC 138 ms
16,564 KB
testcase_20 AC 215 ms
20,804 KB
testcase_21 AC 171 ms
18,436 KB
testcase_22 AC 202 ms
20,220 KB
testcase_23 AC 388 ms
18,288 KB
testcase_24 AC 132 ms
12,928 KB
testcase_25 AC 297 ms
16,372 KB
testcase_26 AC 347 ms
18,308 KB
testcase_27 AC 81 ms
11,776 KB
testcase_28 AC 295 ms
16,532 KB
testcase_29 AC 446 ms
20,020 KB
testcase_30 AC 302 ms
16,732 KB
testcase_31 AC 65 ms
11,520 KB
testcase_32 AC 278 ms
15,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, n = map(int, input().split())
A = list(map(int, input().split()))
S = list(input())

curr = A[0]
for i in range(n - 1):
    if S[i] == '+':
        curr += A[i + 1]
    elif S[i] == '-':
        curr -= A[i + 1]
    elif S[i] == '*':
        curr *= A[i + 1]
    elif S[i] == '/':
        curr *= pow(A[i + 1], p - 2, p)
    curr %= p
print(curr)
0