結果

問題 No.350 d=vt
ユーザー 一ノ瀬卯月
提出日時 2019-03-25 16:17:50
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 175 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 58,836 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 10:38:22
合計ジャッジ時間 1,595 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 7 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
using namespace std;
int main()
{
	double v,s;
	int t;
	cin >> v >> t;
	s = (v * 10000 * t);
	cout << ceil(s/10000) << endl;
	return 0;
}
0