結果

問題 No.350 d=vt
ユーザー 👑 KazunKazun
提出日時 2020-10-11 21:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 106 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 89,220 KB
最終ジャッジ日時 2023-09-27 23:13:56
合計ジャッジ時間 5,121 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
88,820 KB
testcase_01 AC 194 ms
89,220 KB
testcase_02 AC 185 ms
89,008 KB
testcase_03 AC 201 ms
89,008 KB
testcase_04 AC 193 ms
89,192 KB
testcase_05 AC 188 ms
88,980 KB
testcase_06 AC 186 ms
89,136 KB
testcase_07 AC 194 ms
89,020 KB
testcase_08 AC 193 ms
89,020 KB
testcase_09 AC 193 ms
88,988 KB
testcase_10 AC 192 ms
88,888 KB
testcase_11 AC 189 ms
89,012 KB
testcase_12 AC 197 ms
88,984 KB
testcase_13 AC 189 ms
89,100 KB
testcase_14 AC 188 ms
89,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(floor(v*t))
0