結果

問題 No.552 十分簡単な星1の問題
ユーザー cande398cande398
提出日時 2017-10-07 02:14:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 72,040 KB
実行使用メモリ 57,532 KB
最終ジャッジ日時 2023-08-10 18:33:35
合計ジャッジ時間 9,389 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
56,616 KB
testcase_01 AC 115 ms
56,296 KB
testcase_02 AC 117 ms
55,820 KB
testcase_03 AC 115 ms
55,932 KB
testcase_04 AC 115 ms
56,276 KB
testcase_05 AC 115 ms
55,912 KB
testcase_06 AC 118 ms
55,888 KB
testcase_07 AC 118 ms
57,532 KB
testcase_08 AC 118 ms
56,064 KB
testcase_09 AC 115 ms
55,620 KB
testcase_10 AC 116 ms
56,424 KB
testcase_11 AC 117 ms
55,912 KB
testcase_12 AC 116 ms
55,892 KB
testcase_13 AC 118 ms
56,016 KB
testcase_14 AC 117 ms
56,464 KB
testcase_15 AC 114 ms
56,080 KB
testcase_16 AC 116 ms
55,800 KB
testcase_17 AC 117 ms
56,152 KB
testcase_18 AC 116 ms
56,288 KB
testcase_19 AC 114 ms
56,368 KB
testcase_20 AC 116 ms
56,680 KB
testcase_21 AC 113 ms
55,988 KB
testcase_22 AC 116 ms
56,364 KB
testcase_23 AC 119 ms
56,208 KB
testcase_24 AC 115 ms
55,980 KB
testcase_25 AC 116 ms
56,068 KB
testcase_26 AC 117 ms
56,444 KB
testcase_27 AC 116 ms
56,068 KB
testcase_28 AC 115 ms
56,500 KB
testcase_29 AC 115 ms
55,636 KB
testcase_30 AC 114 ms
56,288 KB
testcase_31 AC 116 ms
56,272 KB
testcase_32 AC 117 ms
55,988 KB
testcase_33 AC 116 ms
56,244 KB
testcase_34 AC 115 ms
56,240 KB
testcase_35 AC 117 ms
55,884 KB
testcase_36 AC 117 ms
56,160 KB
testcase_37 AC 116 ms
55,976 KB
testcase_38 AC 118 ms
56,704 KB
testcase_39 AC 117 ms
55,908 KB
testcase_40 AC 118 ms
56,076 KB
testcase_41 AC 115 ms
55,848 KB
testcase_42 AC 117 ms
55,652 KB
testcase_43 AC 116 ms
55,912 KB
testcase_44 AC 117 ms
55,880 KB
testcase_45 AC 116 ms
56,328 KB
testcase_46 AC 117 ms
56,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main{
  public static void main(String[] args){
    Scanner sc = new java.util.Scanner(System.in);
    BigDecimal num = new BigDecimal(sc.next());
    BigDecimal ten = new BigDecimal("10");
    num = num.multiply(ten);
    System.out.println(num);
  }
}
0