結果

問題 No.1842 Decimal Point
ユーザー boatmusclesboatmuscles
提出日時 2022-02-18 22:37:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 41,344 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 09:24:26
合計ジャッジ時間 1,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 41 ms
5,376 KB
testcase_02 AC 73 ms
5,376 KB
testcase_03 AC 64 ms
5,376 KB
testcase_04 AC 58 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<atcoder/modint>
using namespace atcoder;
using mint = modint;

int main(){
    int testcase_i;
    scanf("%d", &testcase_i);
    for (int ___ = 0; ___ < testcase_i; ___++){
        int A, B, C;
        scanf("%d %d %d", &A, &B, &C);
        mint::set_mod(B);
        printf("%llu\n", (mint(A)*mint(10).pow(C-1)).val()*10ULL/B);
    }
    return 0;
}
0