結果

問題 No.1842 Decimal Point
ユーザー 37zigen37zigen
提出日時 2022-02-18 22:00:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 858 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 80,784 KB
最終ジャッジ日時 2024-06-29 08:53:02
合計ジャッジ時間 3,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,156 KB
testcase_01 AC 379 ms
78,028 KB
testcase_02 AC 858 ms
80,784 KB
testcase_03 AC 548 ms
78,388 KB
testcase_04 AC 520 ms
77,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def powmod(a, n, mod):
    if n == 0 :
        return 1
    if n % 2 == 1:
        return a*powmod(a,n-1,mod) % mod
    else:
        return powmod(a*a%mod,n//2,mod) % mod
    
T=int(input())
for i in range(T):
    A,B,C=map(int,input().split())
    v=powmod(10, C, 10 * B) * A // B % 10;
    print(v)
0