結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

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