結果

問題 No.1092 modular arithmetic
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-13 09:53:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-07-20 18:23:14
合計ジャッジ時間 5,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 69 ms
84,224 KB
testcase_02 AC 41 ms
51,328 KB
testcase_03 AC 98 ms
87,296 KB
testcase_04 AC 88 ms
82,304 KB
testcase_05 AC 89 ms
82,816 KB
testcase_06 AC 74 ms
76,800 KB
testcase_07 AC 82 ms
81,920 KB
testcase_08 AC 85 ms
84,736 KB
testcase_09 AC 84 ms
82,304 KB
testcase_10 AC 78 ms
78,720 KB
testcase_11 AC 80 ms
81,024 KB
testcase_12 AC 78 ms
76,544 KB
testcase_13 AC 61 ms
75,776 KB
testcase_14 AC 65 ms
79,232 KB
testcase_15 AC 51 ms
65,280 KB
testcase_16 AC 60 ms
73,728 KB
testcase_17 AC 65 ms
79,360 KB
testcase_18 AC 92 ms
85,760 KB
testcase_19 AC 76 ms
77,312 KB
testcase_20 AC 94 ms
87,680 KB
testcase_21 AC 83 ms
81,024 KB
testcase_22 AC 90 ms
84,096 KB
testcase_23 AC 119 ms
78,080 KB
testcase_24 AC 65 ms
65,536 KB
testcase_25 AC 98 ms
73,856 KB
testcase_26 AC 107 ms
77,440 KB
testcase_27 AC 56 ms
62,720 KB
testcase_28 AC 96 ms
73,856 KB
testcase_29 AC 127 ms
81,920 KB
testcase_30 AC 100 ms
73,984 KB
testcase_31 AC 51 ms
61,824 KB
testcase_32 AC 95 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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