結果

問題 No.350 d=vt
ユーザー Grun1396Grun1396
提出日時 2016-08-12 20:13:30
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 150 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 55,752 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 05:05:10
合計ジャッジ時間 945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;


int main(){

	float v;
	int t;
	int d;
	cin >> v;
	cin >> t;
	d = v * t;
	cout << d << endl;

	return 0;
}
0