結果

問題 No.350 d=vt
ユーザー sue_charo
提出日時 2017-06-04 16:37:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-10-05 05:23:48
合計ジャッジ時間 1,063 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
from decimal import Decimal

def read():
    v, t = list(map(Decimal, input().split()))
    return (v, t)


def solve(v, t):
    ans = int(v * t)
    return ans


def main():
    params = read()
    print(solve(*params))


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