結果

問題 No.1842 Decimal Point
ユーザー ripityripity
提出日時 2022-02-18 23:05:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 103 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-29 09:45:22
合計ジャッジ時間 2,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 323 ms
76,672 KB
testcase_02 AC 372 ms
76,100 KB
testcase_03 AC 362 ms
76,032 KB
testcase_04 AC 336 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    A,B,C = map(int,input().split())
    print((A*pow(10,C-1,B)%B*10)//B)
0