結果

問題 No.350 d=vt
ユーザー mtok
提出日時 2016-04-02 14:43:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-10-05 04:40:30
合計ジャッジ時間 5,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 9 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		Scanner in = new Scanner(System.in);
		float v=in.nextFloat();
		int t=in.nextInt();
		int m=(int)Math.round(v*t);
		System.out.println(m);

	}
}
0