結果
| 問題 |
No.1842 Decimal Point
|
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2022-05-12 06:37:48 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 1,585 ms / 2,000 ms |
| コード長 | 136 bytes |
| コンパイル時間 | 173 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-07-19 22:09:22 |
| 合計ジャッジ時間 | 5,688 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 |
ソースコード
T = int(input())
for _ in range(T):
a, b, c = map(int, input().split())
x = a * pow(10, c, 10 * b) % (10 * b)
print(x // b)
maspy