結果
問題 | No.1842 Decimal Point |
ユーザー | oruka |
提出日時 | 2022-02-28 09:39:38 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 146 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 81,968 KB |
実行使用メモリ | 205,568 KB |
最終ジャッジ日時 | 2024-07-06 12:18:21 |
合計ジャッジ時間 | 5,279 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
ソースコード
import math T = int(input()) for i in range(T): A = list(map(int, input().split())) X = math.floor(10**A[2]*A[0]/A[1]) % 10 print(X)