結果

問題 No.552 十分簡単な星1の問題
ユーザー yamax3232yamax3232
提出日時 2018-03-15 10:04:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 41,996 KB
最終ジャッジ日時 2024-12-15 21:38:50
合計ジャッジ時間 11,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,084 KB
testcase_01 AC 136 ms
41,752 KB
testcase_02 AC 122 ms
40,800 KB
testcase_03 AC 137 ms
41,896 KB
testcase_04 AC 123 ms
40,892 KB
testcase_05 AC 135 ms
41,836 KB
testcase_06 AC 137 ms
41,440 KB
testcase_07 AC 138 ms
41,872 KB
testcase_08 AC 138 ms
41,448 KB
testcase_09 AC 140 ms
41,656 KB
testcase_10 AC 138 ms
41,708 KB
testcase_11 AC 139 ms
41,696 KB
testcase_12 AC 124 ms
41,076 KB
testcase_13 AC 125 ms
40,684 KB
testcase_14 AC 140 ms
41,644 KB
testcase_15 AC 138 ms
41,736 KB
testcase_16 AC 139 ms
41,696 KB
testcase_17 AC 138 ms
41,640 KB
testcase_18 AC 139 ms
41,820 KB
testcase_19 AC 136 ms
41,296 KB
testcase_20 AC 138 ms
41,600 KB
testcase_21 AC 139 ms
41,764 KB
testcase_22 AC 137 ms
41,456 KB
testcase_23 AC 138 ms
41,500 KB
testcase_24 AC 125 ms
40,764 KB
testcase_25 AC 139 ms
41,776 KB
testcase_26 AC 139 ms
41,656 KB
testcase_27 AC 126 ms
41,260 KB
testcase_28 AC 138 ms
41,760 KB
testcase_29 AC 138 ms
41,676 KB
testcase_30 AC 137 ms
41,556 KB
testcase_31 AC 136 ms
41,436 KB
testcase_32 AC 132 ms
41,060 KB
testcase_33 AC 140 ms
41,384 KB
testcase_34 AC 124 ms
40,692 KB
testcase_35 AC 139 ms
41,996 KB
testcase_36 AC 138 ms
41,776 KB
testcase_37 AC 139 ms
41,744 KB
testcase_38 AC 138 ms
41,568 KB
testcase_39 AC 137 ms
41,488 KB
testcase_40 AC 138 ms
41,772 KB
testcase_41 AC 137 ms
41,632 KB
testcase_42 AC 141 ms
41,712 KB
testcase_43 AC 139 ms
41,460 KB
testcase_44 AC 139 ms
41,576 KB
testcase_45 AC 137 ms
41,804 KB
testcase_46 AC 139 ms
41,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Scanner;

public class Main7 {

	public static void main(String[] args) {
		Scanner kb=new Scanner(System.in);
		BigDecimal a=kb.nextBigDecimal();
		BigDecimal b=new BigDecimal("10");
	System.out.println(a.multiply(b));
	}

}
0