結果

問題 No.350 d=vt
ユーザー mlihua09mlihua09
提出日時 2020-08-28 17:57:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 87,332 KB
実行使用メモリ 71,664 KB
最終ジャッジ日時 2023-08-08 19:55:39
合計ジャッジ時間 1,847 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
71,344 KB
testcase_01 AC 57 ms
71,136 KB
testcase_02 AC 58 ms
71,268 KB
testcase_03 AC 56 ms
71,664 KB
testcase_04 AC 56 ms
71,276 KB
testcase_05 AC 58 ms
71,460 KB
testcase_06 AC 61 ms
71,400 KB
testcase_07 AC 56 ms
71,212 KB
testcase_08 AC 57 ms
71,292 KB
testcase_09 AC 58 ms
71,140 KB
testcase_10 AC 58 ms
71,212 KB
testcase_11 AC 60 ms
71,216 KB
testcase_12 AC 61 ms
71,572 KB
testcase_13 AC 63 ms
71,516 KB
testcase_14 AC 60 ms
71,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


v, t = input().split()

v = int(round(float(v) * 10000))

t = int(t)

print(v * t // 10000)
0