結果

問題 No.1842 Decimal Point
ユーザー colognecologne
提出日時 2022-03-14 20:07:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,360 KB
最終ジャッジ日時 2024-09-21 08:13:00
合計ジャッジ時間 3,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,020 KB
testcase_01 AC 319 ms
76,360 KB
testcase_02 AC 376 ms
76,120 KB
testcase_03 AC 354 ms
76,136 KB
testcase_04 AC 340 ms
76,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    T = int(input())
    for i in range(T):
        a, b, c = map(int, input().split())
        m = a * pow(10, c-1, b) % b
        print(m*10//b)


if __name__ == '__main__':
    main()
0