結果

問題 No.1842 Decimal Point
コンテスト
ユーザー V_Melville
提出日時 2022-02-18 22:04:49
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
TLE  
実行時間 -
コード長 125 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 253 ms
コンパイル使用メモリ 85,180 KB
実行使用メモリ 272,348 KB
最終ジャッジ日時 2026-03-18 20:00:45
合計ジャッジ時間 16,049 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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