結果

問題 No.350 d=vt
ユーザー 👑 KazunKazun
提出日時 2020-10-11 21:10:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 106 bytes
コンパイル時間 1,501 ms
コンパイル使用メモリ 86,572 KB
実行使用メモリ 89,196 KB
最終ジャッジ日時 2023-09-27 23:14:02
合計ジャッジ時間 4,554 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
88,920 KB
testcase_01 AC 208 ms
88,976 KB
testcase_02 AC 220 ms
88,680 KB
testcase_03 AC 208 ms
89,164 KB
testcase_04 AC 213 ms
89,176 KB
testcase_05 AC 206 ms
89,092 KB
testcase_06 AC 209 ms
88,888 KB
testcase_07 AC 222 ms
88,912 KB
testcase_08 AC 207 ms
88,680 KB
testcase_09 AC 206 ms
88,928 KB
testcase_10 AC 207 ms
88,972 KB
testcase_11 AC 207 ms
89,140 KB
testcase_12 AC 205 ms
89,196 KB
testcase_13 AC 207 ms
88,928 KB
testcase_14 AC 206 ms
89,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
from math import floor
v,t=input().split()

v=Decimal(v)
t=int(t)

print(floor(v*t))
0