結果

問題 No.350 d=vt
ユーザー 👑 H20H20
提出日時 2020-11-05 14:24:59
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 78 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 86,932 KB
実行使用メモリ 89,020 KB
最終ジャッジ日時 2023-09-29 17:06:03
合計ジャッジ時間 4,496 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
88,968 KB
testcase_01 AC 203 ms
89,004 KB
testcase_02 AC 202 ms
88,936 KB
testcase_03 AC 203 ms
88,932 KB
testcase_04 AC 203 ms
88,740 KB
testcase_05 AC 203 ms
88,804 KB
testcase_06 AC 202 ms
88,912 KB
testcase_07 AC 205 ms
89,004 KB
testcase_08 AC 206 ms
88,936 KB
testcase_09 AC 205 ms
89,016 KB
testcase_10 AC 204 ms
89,020 KB
testcase_11 AC 205 ms
88,732 KB
testcase_12 AC 209 ms
88,768 KB
testcase_13 AC 204 ms
88,944 KB
testcase_14 AC 204 ms
88,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
V,T =input().split()
V = Decimal(V)
print(int(int(T)*V))
0