結果

問題 No.350 d=vt
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-10 19:50:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 80,260 KB
最終ジャッジ日時 2024-09-19 23:54:22
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
80,008 KB
testcase_01 AC 106 ms
79,816 KB
testcase_02 AC 105 ms
80,196 KB
testcase_03 AC 103 ms
80,192 KB
testcase_04 AC 98 ms
80,128 KB
testcase_05 AC 97 ms
80,260 KB
testcase_06 AC 99 ms
80,116 KB
testcase_07 AC 99 ms
80,072 KB
testcase_08 AC 104 ms
80,200 KB
testcase_09 AC 102 ms
80,056 KB
testcase_10 AC 105 ms
80,184 KB
testcase_11 AC 100 ms
80,016 KB
testcase_12 AC 99 ms
79,772 KB
testcase_13 AC 100 ms
80,028 KB
testcase_14 AC 102 ms
80,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
v, t = map(Decimal, input().split())
print(int(v*t))
0