結果

問題 No.350 d=vt
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-17 01:40:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 4,234 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 54,700 KB
最終ジャッジ日時 2024-04-15 10:58:09
合計ジャッジ時間 7,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,904 KB
testcase_01 AC 148 ms
41,884 KB
testcase_02 AC 146 ms
41,768 KB
testcase_03 AC 148 ms
42,244 KB
testcase_04 AC 152 ms
41,684 KB
testcase_05 WA -
testcase_06 AC 149 ms
42,000 KB
testcase_07 AC 146 ms
42,268 KB
testcase_08 AC 145 ms
42,024 KB
testcase_09 AC 146 ms
41,900 KB
testcase_10 AC 145 ms
41,776 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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