結果

問題 No.552 十分簡単な星1の問題
ユーザー YOSHIYOSHI
提出日時 2021-03-19 22:02:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 3,376 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 50,792 KB
最終ジャッジ日時 2024-11-18 22:23:03
合計ジャッジ時間 7,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
50,608 KB
testcase_01 AC 58 ms
50,532 KB
testcase_02 AC 57 ms
50,588 KB
testcase_03 AC 58 ms
50,664 KB
testcase_04 AC 57 ms
50,296 KB
testcase_05 AC 57 ms
50,772 KB
testcase_06 AC 58 ms
50,236 KB
testcase_07 AC 59 ms
50,488 KB
testcase_08 AC 58 ms
50,600 KB
testcase_09 AC 58 ms
50,684 KB
testcase_10 AC 58 ms
50,508 KB
testcase_11 AC 58 ms
50,568 KB
testcase_12 AC 58 ms
50,672 KB
testcase_13 AC 59 ms
50,760 KB
testcase_14 AC 59 ms
50,504 KB
testcase_15 AC 57 ms
50,204 KB
testcase_16 AC 60 ms
50,792 KB
testcase_17 AC 58 ms
50,580 KB
testcase_18 AC 59 ms
50,508 KB
testcase_19 AC 57 ms
50,500 KB
testcase_20 AC 60 ms
50,348 KB
testcase_21 AC 58 ms
50,600 KB
testcase_22 AC 58 ms
50,576 KB
testcase_23 AC 58 ms
50,524 KB
testcase_24 AC 58 ms
50,344 KB
testcase_25 AC 60 ms
50,644 KB
testcase_26 AC 59 ms
50,464 KB
testcase_27 AC 59 ms
50,536 KB
testcase_28 AC 59 ms
50,448 KB
testcase_29 AC 58 ms
50,788 KB
testcase_30 AC 60 ms
50,560 KB
testcase_31 AC 59 ms
50,608 KB
testcase_32 AC 59 ms
50,552 KB
testcase_33 AC 56 ms
50,716 KB
testcase_34 AC 58 ms
50,424 KB
testcase_35 AC 59 ms
50,624 KB
testcase_36 AC 58 ms
50,500 KB
testcase_37 AC 58 ms
50,596 KB
testcase_38 AC 57 ms
50,780 KB
testcase_39 AC 56 ms
50,648 KB
testcase_40 AC 60 ms
50,568 KB
testcase_41 AC 59 ms
50,348 KB
testcase_42 AC 58 ms
50,580 KB
testcase_43 AC 59 ms
50,452 KB
testcase_44 AC 58 ms
50,488 KB
testcase_45 AC 58 ms
50,636 KB
testcase_46 AC 58 ms
50,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000552_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		System.out.println(new BigDecimal(br.readLine()).multiply(BigDecimal.TEN));
	}
}
0