結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,780 KB
testcase_01 AC 116 ms
41,560 KB
testcase_02 AC 114 ms
41,308 KB
testcase_03 AC 107 ms
40,556 KB
testcase_04 AC 106 ms
40,952 KB
testcase_05 WA -
testcase_06 AC 119 ms
41,028 KB
testcase_07 AC 109 ms
40,772 KB
testcase_08 AC 119 ms
41,588 KB
testcase_09 AC 110 ms
40,944 KB
testcase_10 AC 115 ms
41,512 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