結果

問題 No.1092 modular arithmetic
ユーザー first_vilfirst_vil
提出日時 2020-06-25 10:14:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,852 KB
最終ジャッジ日時 2024-07-03 20:48:41
合計ジャッジ時間 6,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 106 ms
21,852 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 196 ms
21,536 KB
testcase_04 AC 160 ms
19,128 KB
testcase_05 AC 163 ms
19,168 KB
testcase_06 AC 132 ms
16,576 KB
testcase_07 AC 157 ms
18,952 KB
testcase_08 AC 171 ms
19,892 KB
testcase_09 AC 155 ms
18,672 KB
testcase_10 AC 138 ms
17,648 KB
testcase_11 AC 151 ms
18,248 KB
testcase_12 AC 131 ms
16,532 KB
testcase_13 WA -
testcase_14 AC 72 ms
12,416 KB
testcase_15 AC 36 ms
11,136 KB
testcase_16 AC 62 ms
11,904 KB
testcase_17 WA -
testcase_18 AC 200 ms
20,576 KB
testcase_19 AC 126 ms
16,688 KB
testcase_20 AC 202 ms
21,048 KB
testcase_21 AC 159 ms
18,568 KB
testcase_22 AC 193 ms
20,220 KB
testcase_23 AC 368 ms
18,412 KB
testcase_24 AC 124 ms
12,928 KB
testcase_25 AC 286 ms
16,624 KB
testcase_26 AC 330 ms
18,340 KB
testcase_27 AC 78 ms
11,776 KB
testcase_28 AC 284 ms
16,536 KB
testcase_29 AC 428 ms
20,016 KB
testcase_30 AC 283 ms
16,608 KB
testcase_31 AC 60 ms
11,392 KB
testcase_32 AC 269 ms
16,056 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-=x
    elif c=='*':
        ans*=x
    else:
        ans*=pow(x,p-2,p)
    if ans<0:
        ans+=p
    if p<ans:
        ans%=p
print(ans)
0