結果
| 問題 |
No.1842 Decimal Point
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-18 22:04:49 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 125 bytes |
| コンパイル時間 | 163 ms |
| コンパイル使用メモリ | 82,396 KB |
| 実行使用メモリ | 229,220 KB |
| 最終ジャッジ日時 | 2024-06-29 08:58:57 |
| 合計ジャッジ時間 | 6,723 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 4 |
ソースコード
t = int(input())
for _ in range(t):
a, b, c = map(int, input().split())
x = a*pow(10, c)
x //= b
print(x%10)