結果

問題 No.350 d=vt
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-17 01:40:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 4,703 ms
コンパイル使用メモリ 73,864 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-10-05 05:49:51
合計ジャッジ時間 6,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,216 KB
testcase_01 AC 111 ms
41,380 KB
testcase_02 AC 120 ms
41,612 KB
testcase_03 AC 121 ms
41,452 KB
testcase_04 AC 123 ms
41,332 KB
testcase_05 WA -
testcase_06 AC 122 ms
41,464 KB
testcase_07 AC 120 ms
41,180 KB
testcase_08 AC 135 ms
41,304 KB
testcase_09 AC 120 ms
41,508 KB
testcase_10 AC 119 ms
41,508 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