結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 113 ms
21,724 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 203 ms
20,936 KB
testcase_04 AC 171 ms
19,000 KB
testcase_05 AC 175 ms
19,040 KB
testcase_06 AC 137 ms
16,576 KB
testcase_07 AC 164 ms
18,964 KB
testcase_08 AC 181 ms
19,888 KB
testcase_09 AC 166 ms
18,672 KB
testcase_10 AC 145 ms
17,428 KB
testcase_11 AC 160 ms
18,380 KB
testcase_12 AC 138 ms
16,536 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 42 ms
11,008 KB
testcase_16 AC 65 ms
11,904 KB
testcase_17 WA -
testcase_18 AC 203 ms
20,704 KB
testcase_19 AC 134 ms
16,696 KB
testcase_20 AC 208 ms
20,928 KB
testcase_21 AC 167 ms
18,696 KB
testcase_22 AC 197 ms
20,224 KB
testcase_23 AC 385 ms
18,416 KB
testcase_24 AC 132 ms
12,928 KB
testcase_25 AC 297 ms
16,364 KB
testcase_26 AC 345 ms
18,448 KB
testcase_27 AC 79 ms
11,776 KB
testcase_28 AC 290 ms
16,540 KB
testcase_29 AC 442 ms
20,016 KB
testcase_30 AC 296 ms
16,608 KB
testcase_31 AC 64 ms
11,392 KB
testcase_32 AC 274 ms
15,876 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