結果

問題 No.1092 modular arithmetic
ユーザー face4face4
提出日時 2020-07-05 13:27:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 65,708 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 10:08:39
合計ジャッジ時間 4,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 48 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 66 ms
6,940 KB
testcase_04 AC 56 ms
6,944 KB
testcase_05 AC 57 ms
6,940 KB
testcase_06 AC 42 ms
6,944 KB
testcase_07 AC 53 ms
6,940 KB
testcase_08 AC 60 ms
6,940 KB
testcase_09 AC 54 ms
6,940 KB
testcase_10 AC 47 ms
6,940 KB
testcase_11 AC 51 ms
6,940 KB
testcase_12 AC 42 ms
6,940 KB
testcase_13 AC 18 ms
6,940 KB
testcase_14 AC 21 ms
6,940 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 15 ms
6,940 KB
testcase_17 AC 21 ms
6,940 KB
testcase_18 AC 69 ms
6,944 KB
testcase_19 AC 42 ms
6,944 KB
testcase_20 AC 71 ms
6,944 KB
testcase_21 AC 55 ms
6,940 KB
testcase_22 AC 66 ms
6,940 KB
testcase_23 AC 107 ms
6,944 KB
testcase_24 AC 31 ms
6,940 KB
testcase_25 AC 79 ms
6,944 KB
testcase_26 AC 93 ms
6,940 KB
testcase_27 AC 16 ms
6,940 KB
testcase_28 AC 77 ms
6,944 KB
testcase_29 AC 121 ms
6,944 KB
testcase_30 AC 79 ms
6,940 KB
testcase_31 AC 12 ms
6,944 KB
testcase_32 AC 74 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

typedef long long ll;

ll modpow(ll a, ll b, ll p = 1e9+7){
    if(b == 0)  return 1;

    if(b % 2 == 0){
        ll d = modpow(a, b/2, p);
        return (d*d) % p;
    }else{
        return (a%p * modpow(a, b-1, p)) % p;
    }
}

int main(){
    int p, n;
    cin >> p >> n;
    int a[n];
    for(int i = 0; i < n; i++)  cin >> a[i];
    ll ans = a[0];
    for(int i = 1; i < n; i++){
        char c;
        cin >> c;
        if(c == '+')    (ans += a[i]) %= p;
        if(c == '-')    (ans += p-a[i]) %= p;
        if(c == '*')    (ans *= a[i]) %= p;
        if(c == '/')    (ans *= modpow(a[i], p-2, p)) %= p;
    }
    cout << ans << endl;
    return 0;
}
0