結果

問題 No.350 d=vt
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-09-17 13:00:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 3,318 ms
コンパイル使用メモリ 74,888 KB
実行使用メモリ 37,632 KB
最終ジャッジ日時 2024-10-05 05:35:42
合計ジャッジ時間 4,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,632 KB
testcase_01 AC 55 ms
37,336 KB
testcase_02 AC 54 ms
37,632 KB
testcase_03 AC 53 ms
37,156 KB
testcase_04 AC 54 ms
37,544 KB
testcase_05 AC 55 ms
37,368 KB
testcase_06 AC 55 ms
37,348 KB
testcase_07 AC 55 ms
37,348 KB
testcase_08 AC 54 ms
37,632 KB
testcase_09 AC 55 ms
37,504 KB
testcase_10 AC 55 ms
37,504 KB
testcase_11 AC 56 ms
37,428 KB
testcase_12 AC 54 ms
37,616 KB
testcase_13 AC 53 ms
37,632 KB
testcase_14 AC 54 ms
37,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigDecimal;

import static java.lang.System.in;

public class No350 {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));

        String[] inputs = reader.readLine().split(" ");
        double v = Double.parseDouble(inputs[0]);
        int t = Integer.parseInt(inputs[1]);

        System.out.println(solve(v, t));
    }

    public static int solve(double v, int t) {

        return BigDecimal.valueOf(v).multiply(BigDecimal.valueOf(t)).intValue();
    }
}
0