結果

問題 No.350 d=vt
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-03-11 22:44:28
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 10,536 KB
実行使用メモリ 9,268 KB
最終ジャッジ日時 2023-07-27 23:53:35
合計ジャッジ時間 1,320 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
9,044 KB
testcase_01 AC 20 ms
9,092 KB
testcase_02 AC 20 ms
9,000 KB
testcase_03 AC 21 ms
9,232 KB
testcase_04 AC 20 ms
8,892 KB
testcase_05 AC 20 ms
9,092 KB
testcase_06 AC 20 ms
9,024 KB
testcase_07 AC 21 ms
8,908 KB
testcase_08 AC 20 ms
9,088 KB
testcase_09 AC 20 ms
9,196 KB
testcase_10 AC 20 ms
9,088 KB
testcase_11 AC 21 ms
9,076 KB
testcase_12 AC 20 ms
9,268 KB
testcase_13 AC 20 ms
9,000 KB
testcase_14 AC 20 ms
9,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import decimal
import math


def main():
    v, t = map(decimal.Decimal, input().split())
    print(math.floor(v * t))


if __name__ == '__main__':
    main()
0