結果

問題 No.350 d=vt
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-10 19:50:56
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 79,324 KB
最終ジャッジ日時 2023-10-20 04:09:30
合計ジャッジ時間 3,106 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
79,316 KB
testcase_01 AC 111 ms
79,316 KB
testcase_02 AC 114 ms
79,316 KB
testcase_03 AC 112 ms
79,320 KB
testcase_04 AC 110 ms
79,320 KB
testcase_05 AC 110 ms
79,316 KB
testcase_06 AC 113 ms
79,324 KB
testcase_07 AC 108 ms
79,316 KB
testcase_08 AC 110 ms
79,316 KB
testcase_09 AC 108 ms
79,324 KB
testcase_10 AC 110 ms
79,316 KB
testcase_11 AC 112 ms
79,320 KB
testcase_12 AC 111 ms
79,320 KB
testcase_13 AC 109 ms
79,324 KB
testcase_14 AC 110 ms
79,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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