結果

問題 No.350 d=vt
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 15:01:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 42,408 KB
最終ジャッジ日時 2024-04-15 11:00:09
合計ジャッジ時間 5,643 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,620 KB
testcase_01 AC 156 ms
42,256 KB
testcase_02 AC 153 ms
42,152 KB
testcase_03 AC 156 ms
42,184 KB
testcase_04 AC 153 ms
42,336 KB
testcase_05 WA -
testcase_06 AC 155 ms
42,408 KB
testcase_07 AC 153 ms
41,920 KB
testcase_08 AC 157 ms
41,752 KB
testcase_09 AC 154 ms
42,048 KB
testcase_10 AC 154 ms
41,904 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