結果

問題 No.350 d=vt
ユーザー pluto77pluto77
提出日時 2016-03-17 12:09:17
言語 Python2
(2.7.18)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-10-05 04:34:33
合計ジャッジ時間 945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
#yuki_350
import math
v,t=raw_input().split()
v=float(v)
t=int(t)

mul=v*t+0.00001
res=math.floor(mul)

print "%.0f" % res
0