結果

問題 No.1092 modular arithmetic
ユーザー lloyzlloyz
提出日時 2022-08-30 07:19:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,976 KB
最終ジャッジ日時 2024-04-24 17:54:53
合計ジャッジ時間 7,303 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 112 ms
21,976 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 183 ms
21,668 KB
testcase_04 AC 170 ms
19,124 KB
testcase_05 AC 175 ms
19,168 KB
testcase_06 AC 125 ms
16,700 KB
testcase_07 AC 149 ms
19,080 KB
testcase_08 AC 167 ms
20,016 KB
testcase_09 AC 150 ms
18,792 KB
testcase_10 AC 136 ms
17,648 KB
testcase_11 AC 147 ms
18,380 KB
testcase_12 AC 121 ms
16,660 KB
testcase_13 AC 71 ms
12,160 KB
testcase_14 AC 80 ms
12,416 KB
testcase_15 AC 35 ms
11,136 KB
testcase_16 AC 64 ms
12,032 KB
testcase_17 AC 78 ms
12,416 KB
testcase_18 AC 184 ms
20,708 KB
testcase_19 AC 119 ms
16,696 KB
testcase_20 AC 189 ms
21,056 KB
testcase_21 AC 149 ms
18,564 KB
testcase_22 AC 184 ms
20,352 KB
testcase_23 AC 344 ms
18,416 KB
testcase_24 AC 120 ms
13,056 KB
testcase_25 AC 270 ms
16,620 KB
testcase_26 AC 312 ms
18,440 KB
testcase_27 AC 70 ms
11,904 KB
testcase_28 AC 269 ms
16,660 KB
testcase_29 AC 399 ms
20,144 KB
testcase_30 AC 280 ms
16,732 KB
testcase_31 AC 60 ms
11,520 KB
testcase_32 AC 255 ms
15,932 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