結果

問題 No.251 大きな桁の復習問題(1)
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2022-12-31 06:10:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 840 bytes
コンパイル時間 904 ms
コンパイル使用メモリ 106,892 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 16:06:53
合計ジャッジ時間 1,939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 7 ms
6,940 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 6 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>

using namespace std;

const long long modc = 129402307;

long long mod_exp(long long b, long long e, long long m){
    if (e > 0 && b == 0) return 0;
    long long ans = 1;
    b %= m;

    while (e > 0){
        if ((e & 1LL)) ans = (ans * b) % m;
        e = e >> 1LL;
        b = (b*b) % m;
    }

    return ans;
}

long long div(string S, long long P){
    long long N = S.size(), res = 0;
    for (int i=0; i<N; i++){
        res = res * 10 + S[i]-'0';
        res %= P;
    }
    return res;
}

int main(){

    string S, T;
    cin >> S >> T;
    long long N = div(S, modc), M = div(T, modc-1);
    cout << mod_exp(N, M, modc) << endl;

    return 0;
}
0