結果

問題 No.350 d=vt
ユーザー a_tena_ten
提出日時 2016-03-12 00:15:14
言語 Python2
(2.7.18)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-10-05 04:24:27
合計ジャッジ時間 1,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8

from decimal import Decimal
from math import floor

n=raw_input().split()
v=Decimal(n[0])
t=Decimal(int(n[1]))

print int(floor(v*t))
0