結果

問題 No.350 d=vt
ユーザー 翠嵐
提出日時 2016-05-08 23:46:23
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 59,480 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-05 04:49:47
合計ジャッジ時間 1,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>

using namespace std;

int main() {
	double v,t; int d;
	cin >> v >> t;

	t = t * 1.5;

	d = floor(v * t / 1.5);

	cout << d << endl;

	return 0;
}
0