結果

問題 No.1842 Decimal Point
ユーザー KazunKazun
提出日時 2022-02-18 21:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,244 KB
最終ジャッジ日時 2024-06-29 08:28:52
合計ジャッジ時間 1,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 103 ms
76,800 KB
testcase_02 AC 169 ms
76,928 KB
testcase_03 AC 130 ms
77,244 KB
testcase_04 AC 131 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
write=sys.stdout.write


T=int(input())
Ans=[0]*T
for t in range(T):
    A,B,C=map(int,input().split())

    alpha=(A%(10*B))*pow(10,C,10*B)
    Ans[t]=alpha//B%10

write("\n".join(map(str,Ans)))
0