結果

問題 No.350 d=vt
ユーザー ぴろずぴろず
提出日時 2016-04-15 14:39:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 1,818 ms
コンパイル使用メモリ 75,048 KB
実行使用メモリ 54,552 KB
最終ジャッジ日時 2024-10-05 04:47:06
合計ジャッジ時間 4,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,384 KB
testcase_01 AC 110 ms
53,452 KB
testcase_02 AC 116 ms
53,628 KB
testcase_03 AC 114 ms
53,700 KB
testcase_04 AC 129 ms
54,372 KB
testcase_05 AC 133 ms
54,448 KB
testcase_06 AC 127 ms
54,332 KB
testcase_07 AC 125 ms
54,168 KB
testcase_08 AC 126 ms
54,212 KB
testcase_09 AC 116 ms
53,740 KB
testcase_10 AC 115 ms
54,400 KB
testcase_11 AC 128 ms
54,248 KB
testcase_12 AC 118 ms
53,748 KB
testcase_13 AC 138 ms
54,552 KB
testcase_14 AC 136 ms
54,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no350;

import java.math.RoundingMode;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println(sc.nextBigDecimal().multiply(sc.nextBigDecimal()).setScale(0, RoundingMode.FLOOR).toPlainString());
	}

}
0