結果

問題 No.350 d=vt
ユーザー satanic
提出日時 2016-03-30 16:33:35
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 67,040 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-05 04:38:42
合計ジャッジ時間 1,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <iomanip>

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(0);
    
    double v, t;
    std::cin >> v >> t;
    std::cout << std::floor(v*t+std::pow(10, -8)) << "\n";
    return 0;
}
0