結果
| 問題 | No.1842 Decimal Point |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-18 22:04:49 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 253 ms |
| コンパイル使用メモリ | 85,180 KB |
| 実行使用メモリ | 272,348 KB |
| 最終ジャッジ日時 | 2026-03-18 20:00:45 |
| 合計ジャッジ時間 | 16,049 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 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)