結果
| 問題 |
No.350 d=vt
|
| コンテスト | |
| ユーザー |
💕💖💞
|
| 提出日時 | 2016-09-11 02:45:11 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 19 ms / 2,000 ms |
| コード長 | 128 bytes |
| コンパイル時間 | 46 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 8,320 KB |
| 最終ジャッジ日時 | 2024-10-05 05:06:46 |
| 合計ジャッジ時間 | 1,069 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
from decimal import *
getcontext().prec = 12
ins = map(Decimal, map(float, raw_input().split(" ") ) )
print int(ins[0] * ins[1])
💕💖💞