結果

問題 No.1177 余りは?
ユーザー merom686merom686
提出日時 2020-08-21 23:07:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 637 bytes
コンパイル時間 1,099 ms
コンパイル使用メモリ 89,656 KB
最終ジャッジ日時 2025-01-13 06:33:48
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

constexpr int P = 1000000007;

ll powmod(ll n, ll k, ll p) {
    ll r = 1, t = n % p;
    for (; k != 0; k /= 2) {
        if (k & 1) r = r * t % p;
        t = t * t % p;
    }
    return r;
}
ll modinv(ll n) {
    return powmod(n, P - 2, P);
}

int main() {
    int p, k;
    cin >> p >> k;

    ll s = (powmod(10, p - 1, p) + p - 1 - k) % p;
    ll r = (powmod(10, p - 1, P) + p - 1 - k + (P - s)) % P * modinv(p) % P;

    cout << r << endl;

    return 0;
}
0