結果

問題 No.1842 Decimal Point
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-03-03 00:02:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 81,860 KB
最終ジャッジ日時 2024-09-17 16:30:56
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 726 ms
81,860 KB
testcase_02 AC 698 ms
78,976 KB
testcase_03 AC 545 ms
77,824 KB
testcase_04 AC 500 ms
77,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def my_pow(x, n, mod):
    if n == 0:
        return 1
    elif n % 2 == 1:
        return (x * my_pow((x * x) % mod, n // 2, mod)) % mod
    else:
        return my_pow((x * x) % mod, n // 2, mod)

T = int(input())
for _ in range(T):
    A, B, C = map(int, input().split())
    rem = my_pow(10, C, 10 * B)
    rem = (A * rem) % (10 * B)
    print(rem // B)
0