結果

問題 No.350 d=vt
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:03:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 3,456 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-04-15 10:39:01
合計ジャッジ時間 6,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,856 KB
testcase_01 AC 154 ms
42,192 KB
testcase_02 WA -
testcase_03 AC 152 ms
41,928 KB
testcase_04 WA -
testcase_05 AC 149 ms
41,984 KB
testcase_06 WA -
testcase_07 AC 153 ms
41,716 KB
testcase_08 AC 152 ms
41,768 KB
testcase_09 WA -
testcase_10 AC 153 ms
41,656 KB
testcase_11 AC 151 ms
41,840 KB
testcase_12 AC 150 ms
42,144 KB
testcase_13 AC 149 ms
42,032 KB
testcase_14 AC 150 ms
41,772 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