結果

問題 No.1092 modular arithmetic
ユーザー KeroruKeroru
提出日時 2020-06-25 19:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,141 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 115,932 KB
最終ジャッジ日時 2024-07-03 21:42:41
合計ジャッジ時間 22,750 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,308 KB
testcase_01 AC 1,137 ms
115,932 KB
testcase_02 AC 37 ms
53,368 KB
testcase_03 AC 1,112 ms
105,600 KB
testcase_04 AC 951 ms
99,960 KB
testcase_05 AC 908 ms
100,700 KB
testcase_06 AC 687 ms
93,140 KB
testcase_07 AC 920 ms
100,096 KB
testcase_08 AC 1,017 ms
102,896 KB
testcase_09 AC 926 ms
99,588 KB
testcase_10 AC 761 ms
96,120 KB
testcase_11 AC 869 ms
97,888 KB
testcase_12 AC 659 ms
93,116 KB
testcase_13 AC 844 ms
99,140 KB
testcase_14 AC 986 ms
102,932 KB
testcase_15 AC 229 ms
81,860 KB
testcase_16 AC 751 ms
96,020 KB
testcase_17 AC 1,011 ms
103,216 KB
testcase_18 AC 1,102 ms
104,948 KB
testcase_19 AC 688 ms
93,612 KB
testcase_20 AC 1,141 ms
106,004 KB
testcase_21 AC 946 ms
99,128 KB
testcase_22 AC 1,061 ms
103,524 KB
testcase_23 AC 117 ms
83,988 KB
testcase_24 AC 64 ms
67,456 KB
testcase_25 AC 99 ms
78,208 KB
testcase_26 AC 109 ms
83,856 KB
testcase_27 AC 52 ms
64,000 KB
testcase_28 AC 97 ms
78,464 KB
testcase_29 AC 129 ms
89,244 KB
testcase_30 AC 98 ms
78,960 KB
testcase_31 AC 49 ms
62,848 KB
testcase_32 AC 93 ms
76,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,n=map(int,input().split())
a=list(map(int,input().split()))[::-1]
t=a.pop()
op=list(input())[::-1]
while op:
    x=op.pop()
    if x=='/':
        t*=pow(a.pop(),p-2,p)
    else:
        t=eval(str(t)+x+str(a.pop()))
    t%=p

print(t)
0