結果

問題 No.1092 modular arithmetic
ユーザー pluto77pluto77
提出日時 2020-06-25 08:58:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,852 KB
最終ジャッジ日時 2024-07-03 20:41:37
合計ジャッジ時間 6,656 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 114 ms
21,852 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 186 ms
21,668 KB
testcase_04 AC 156 ms
19,128 KB
testcase_05 AC 172 ms
19,040 KB
testcase_06 AC 136 ms
16,700 KB
testcase_07 AC 151 ms
19,084 KB
testcase_08 AC 168 ms
19,888 KB
testcase_09 AC 148 ms
18,792 KB
testcase_10 AC 130 ms
17,652 KB
testcase_11 AC 146 ms
18,248 KB
testcase_12 AC 122 ms
16,528 KB
testcase_13 AC 71 ms
12,032 KB
testcase_14 AC 79 ms
12,416 KB
testcase_15 AC 37 ms
11,136 KB
testcase_16 AC 65 ms
11,904 KB
testcase_17 AC 79 ms
12,380 KB
testcase_18 AC 183 ms
20,708 KB
testcase_19 AC 118 ms
16,688 KB
testcase_20 AC 193 ms
21,056 KB
testcase_21 AC 158 ms
18,568 KB
testcase_22 AC 186 ms
20,344 KB
testcase_23 AC 345 ms
18,416 KB
testcase_24 AC 119 ms
12,928 KB
testcase_25 AC 271 ms
16,624 KB
testcase_26 AC 319 ms
18,412 KB
testcase_27 AC 71 ms
11,904 KB
testcase_28 AC 267 ms
16,792 KB
testcase_29 AC 417 ms
20,020 KB
testcase_30 AC 272 ms
16,732 KB
testcase_31 AC 59 ms
11,520 KB
testcase_32 AC 252 ms
15,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1092
p,n=map(int,input().split())
a=list(map(int,input().split()))
s=input()
res=a[0]
for i in range(n-1):
 if s[i]=='+':
  res+=a[i+1]
 elif s[i]=='-':
  res-=a[i+1]
 elif s[i]=='*':
  res*=a[i+1]
 else:
  res*=pow(a[i+1],p-2,p)
 res%=p
print(res)
0