結果

問題 No.350 d=vt
ユーザー fjafjafjafjafjafja
提出日時 2017-09-16 17:18:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 3,361 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 54,556 KB
最終ジャッジ日時 2024-10-05 05:35:02
合計ジャッジ時間 6,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,512 KB
testcase_01 AC 144 ms
41,612 KB
testcase_02 AC 143 ms
41,460 KB
testcase_03 AC 141 ms
41,820 KB
testcase_04 AC 152 ms
41,652 KB
testcase_05 WA -
testcase_06 AC 145 ms
41,492 KB
testcase_07 AC 144 ms
41,508 KB
testcase_08 AC 141 ms
41,380 KB
testcase_09 AC 141 ms
41,740 KB
testcase_10 AC 144 ms
41,404 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