結果

問題 No.350 d=vt
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 20:57:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 230 bytes
コンパイル時間 3,436 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 54,796 KB
最終ジャッジ日時 2024-04-15 10:38:54
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
54,332 KB
testcase_01 AC 151 ms
54,340 KB
testcase_02 AC 154 ms
54,316 KB
testcase_03 AC 150 ms
54,096 KB
testcase_04 AC 151 ms
54,224 KB
testcase_05 WA -
testcase_06 AC 157 ms
54,796 KB
testcase_07 AC 150 ms
54,188 KB
testcase_08 AC 151 ms
54,152 KB
testcase_09 AC 148 ms
54,096 KB
testcase_10 AC 151 ms
54,084 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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