結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,628 KB
testcase_01 AC 127 ms
53,976 KB
testcase_02 WA -
testcase_03 AC 118 ms
54,436 KB
testcase_04 WA -
testcase_05 AC 118 ms
54,156 KB
testcase_06 WA -
testcase_07 AC 107 ms
53,504 KB
testcase_08 AC 114 ms
53,640 KB
testcase_09 WA -
testcase_10 AC 114 ms
53,956 KB
testcase_11 AC 117 ms
53,932 KB
testcase_12 AC 118 ms
53,976 KB
testcase_13 AC 115 ms
54,140 KB
testcase_14 AC 118 ms
54,636 KB
権限があれば一括ダウンロードができます

ソースコード

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)(Math.round(v*t)));
	}
}
0