結果

問題 No.1842 Decimal Point
ユーザー titiatitia
提出日時 2022-02-19 00:40:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 996 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-29 10:06:11
合計ジャッジ時間 2,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 278 ms
10,880 KB
testcase_02 AC 996 ms
10,880 KB
testcase_03 AC 453 ms
10,880 KB
testcase_04 AC 489 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    A,B,C=map(int,input().split())

    k=A*pow(10,C,10*B)%(10*B)

    print(k//B)
0