結果

問題 No.350 d=vt
ユーザー mtokmtok
提出日時 2016-04-02 14:44:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 73,860 KB
実行使用メモリ 56,332 KB
最終ジャッジ日時 2024-10-05 04:41:01
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,080 KB
testcase_01 AC 135 ms
54,552 KB
testcase_02 AC 145 ms
54,016 KB
testcase_03 AC 126 ms
54,052 KB
testcase_04 AC 126 ms
53,712 KB
testcase_05 AC 139 ms
54,404 KB
testcase_06 AC 126 ms
54,336 KB
testcase_07 AC 133 ms
53,900 KB
testcase_08 AC 130 ms
53,568 KB
testcase_09 AC 129 ms
53,928 KB
testcase_10 AC 143 ms
53,792 KB
testcase_11 AC 143 ms
53,888 KB
testcase_12 WA -
testcase_13 AC 131 ms
54,356 KB
testcase_14 AC 131 ms
54,300 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