結果

問題 No.1092 modular arithmetic
ユーザー first_vilfirst_vil
提出日時 2020-06-25 10:20:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,848 KB
最終ジャッジ日時 2024-07-03 20:49:06
合計ジャッジ時間 7,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 106 ms
21,848 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 201 ms
20,936 KB
testcase_04 AC 170 ms
19,000 KB
testcase_05 AC 172 ms
19,172 KB
testcase_06 AC 135 ms
16,580 KB
testcase_07 AC 161 ms
19,084 KB
testcase_08 AC 179 ms
20,016 KB
testcase_09 AC 162 ms
18,672 KB
testcase_10 AC 142 ms
17,524 KB
testcase_11 AC 160 ms
18,384 KB
testcase_12 AC 135 ms
16,532 KB
testcase_13 AC 70 ms
12,032 KB
testcase_14 AC 78 ms
12,372 KB
testcase_15 AC 39 ms
11,008 KB
testcase_16 AC 64 ms
11,904 KB
testcase_17 AC 81 ms
12,376 KB
testcase_18 AC 202 ms
20,576 KB
testcase_19 AC 136 ms
16,696 KB
testcase_20 AC 208 ms
21,060 KB
testcase_21 AC 167 ms
18,572 KB
testcase_22 AC 202 ms
20,220 KB
testcase_23 AC 386 ms
18,416 KB
testcase_24 AC 130 ms
13,056 KB
testcase_25 AC 294 ms
16,628 KB
testcase_26 AC 343 ms
18,316 KB
testcase_27 AC 80 ms
11,776 KB
testcase_28 AC 292 ms
16,544 KB
testcase_29 AC 440 ms
20,020 KB
testcase_30 AC 295 ms
16,864 KB
testcase_31 AC 64 ms
11,520 KB
testcase_32 AC 275 ms
15,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,n=map(int,input().split())
a=list(map(int,input().split()))
ans=a[0]
s=input()
for x,c in zip(a[1:],s):
    if c=='+':
        ans+=x
    elif c=='-':
        ans+=p-x
    elif c=='*':
        ans*=x
    else:
        ans*=pow(x,p-2,p)
    if p<=ans:
        ans%=p
print(ans)
0