結果

問題 No.350 d=vt
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 15:01:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 73,652 KB
実行使用メモリ 56,324 KB
最終ジャッジ日時 2024-10-05 05:53:53
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,324 KB
testcase_01 AC 125 ms
54,320 KB
testcase_02 AC 124 ms
53,436 KB
testcase_03 AC 111 ms
53,520 KB
testcase_04 AC 123 ms
54,112 KB
testcase_05 WA -
testcase_06 AC 133 ms
53,908 KB
testcase_07 AC 133 ms
53,892 KB
testcase_08 AC 131 ms
54,524 KB
testcase_09 AC 114 ms
53,844 KB
testcase_10 AC 130 ms
53,888 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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