結果

問題 No.350 d=vt
ユーザー fjafjafjafjafjafja
提出日時 2017-09-16 17:18:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 3,785 ms
コンパイル使用メモリ 75,344 KB
実行使用メモリ 42,152 KB
最終ジャッジ日時 2024-04-15 10:51:40
合計ジャッジ時間 6,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
41,936 KB
testcase_01 AC 155 ms
41,268 KB
testcase_02 AC 154 ms
41,624 KB
testcase_03 AC 152 ms
41,848 KB
testcase_04 AC 155 ms
42,144 KB
testcase_05 WA -
testcase_06 AC 154 ms
42,068 KB
testcase_07 AC 152 ms
41,856 KB
testcase_08 AC 156 ms
41,816 KB
testcase_09 AC 152 ms
41,704 KB
testcase_10 AC 154 ms
42,152 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N350 {

	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		double v=sc.nextDouble();int t=sc.nextInt();
		int d=(int)Math.floor(v*t);
		System.out.println(d);
	}

}
0