結果
問題 | No.1092 modular arithmetic |
ユーザー | mkawa2 |
提出日時 | 2021-06-04 15:38:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 436 ms / 2,000 ms |
コード長 | 936 bytes |
コンパイル時間 | 479 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 20,184 KB |
最終ジャッジ日時 | 2024-11-19 00:58:58 |
合計ジャッジ時間 | 8,272 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,624 KB |
testcase_01 | AC | 108 ms
20,184 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 197 ms
19,276 KB |
testcase_04 | AC | 166 ms
17,680 KB |
testcase_05 | AC | 175 ms
17,804 KB |
testcase_06 | AC | 132 ms
15,620 KB |
testcase_07 | AC | 162 ms
17,804 KB |
testcase_08 | AC | 177 ms
18,432 KB |
testcase_09 | AC | 162 ms
17,668 KB |
testcase_10 | AC | 145 ms
16,564 KB |
testcase_11 | AC | 157 ms
17,192 KB |
testcase_12 | AC | 135 ms
15,716 KB |
testcase_13 | AC | 73 ms
11,904 KB |
testcase_14 | AC | 82 ms
12,124 KB |
testcase_15 | AC | 40 ms
10,880 KB |
testcase_16 | AC | 66 ms
11,860 KB |
testcase_17 | AC | 80 ms
12,008 KB |
testcase_18 | AC | 203 ms
19,120 KB |
testcase_19 | AC | 133 ms
15,736 KB |
testcase_20 | AC | 208 ms
19,292 KB |
testcase_21 | AC | 165 ms
17,316 KB |
testcase_22 | AC | 195 ms
18,820 KB |
testcase_23 | AC | 383 ms
17,216 KB |
testcase_24 | AC | 130 ms
12,672 KB |
testcase_25 | AC | 292 ms
15,688 KB |
testcase_26 | AC | 342 ms
17,252 KB |
testcase_27 | AC | 79 ms
11,648 KB |
testcase_28 | AC | 288 ms
15,716 KB |
testcase_29 | AC | 436 ms
18,708 KB |
testcase_30 | AC | 294 ms
15,804 KB |
testcase_31 | AC | 64 ms
11,264 KB |
testcase_32 | AC | 273 ms
15,172 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 10**16 # md = 998244353 # md = 10**9+7 p, n = LI() aa = LI() s = SI() ans = aa[0] for a, c in zip(aa[1:], s): if c == "+": ans = (ans+a)%p if c == "-": ans = (ans-a)%p if c == "*": ans = (ans*a)%p if c == "/": ans = (ans*pow(a, p-2, p))%p print(ans)