結果

問題 No.350 d=vt
ユーザー konabekonabe
提出日時 2018-06-02 16:13:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 10,732 KB
実行使用メモリ 9,100 KB
最終ジャッジ日時 2023-09-12 21:33:52
合計ジャッジ時間 1,346 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
8,864 KB
testcase_01 AC 20 ms
8,948 KB
testcase_02 AC 21 ms
8,944 KB
testcase_03 AC 20 ms
9,040 KB
testcase_04 AC 20 ms
8,932 KB
testcase_05 AC 20 ms
8,868 KB
testcase_06 AC 20 ms
9,016 KB
testcase_07 AC 20 ms
8,752 KB
testcase_08 AC 20 ms
8,864 KB
testcase_09 AC 20 ms
8,940 KB
testcase_10 AC 20 ms
8,964 KB
testcase_11 AC 20 ms
9,100 KB
testcase_12 AC 20 ms
9,028 KB
testcase_13 AC 20 ms
8,960 KB
testcase_14 AC 20 ms
8,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

v, t = input().split()
v = Decimal(v)
t = Decimal(t)

print(int(v*t))
0