結果

問題 No.1842 Decimal Point
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-02-19 16:29:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-29 10:27:09
合計ジャッジ時間 2,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 309 ms
76,416 KB
testcase_02 AC 382 ms
76,396 KB
testcase_03 AC 361 ms
76,180 KB
testcase_04 AC 341 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    a,b,c = map(int,input().split())
    ten = pow(10,c-1,b)
    a *= ten
    a %= b
    a *= 10
    print(a//b)
0