結果

問題 No.350 d=vt
ユーザー mtokmtok
提出日時 2016-04-02 14:44:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 54,072 KB
最終ジャッジ日時 2024-04-15 10:25:58
合計ジャッジ時間 5,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,868 KB
testcase_01 AC 155 ms
41,900 KB
testcase_02 AC 153 ms
42,400 KB
testcase_03 AC 149 ms
41,908 KB
testcase_04 AC 152 ms
41,896 KB
testcase_05 AC 150 ms
41,936 KB
testcase_06 AC 149 ms
41,640 KB
testcase_07 AC 154 ms
42,368 KB
testcase_08 AC 152 ms
41,996 KB
testcase_09 AC 152 ms
42,096 KB
testcase_10 AC 150 ms
41,780 KB
testcase_11 AC 153 ms
41,944 KB
testcase_12 WA -
testcase_13 AC 156 ms
41,688 KB
testcase_14 AC 153 ms
42,108 KB
権限があれば一括ダウンロードができます

ソースコード

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.floor(v*t);
		System.out.println(m);

	}
}
0