結果

問題 No.552 十分簡単な星1の問題
ユーザー jimanojimano
提出日時 2018-01-22 23:15:42
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 503 bytes
コンパイル時間 4,108 ms
コンパイル使用メモリ 73,604 KB
実行使用メモリ 37,580 KB
最終ジャッジ日時 2024-12-26 01:25:57
合計ジャッジ時間 6,852 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,212 KB
testcase_01 AC 51 ms
37,448 KB
testcase_02 AC 51 ms
37,112 KB
testcase_03 AC 52 ms
36,992 KB
testcase_04 AC 50 ms
37,364 KB
testcase_05 AC 51 ms
36,864 KB
testcase_06 AC 50 ms
37,256 KB
testcase_07 AC 52 ms
36,864 KB
testcase_08 AC 53 ms
37,520 KB
testcase_09 AC 51 ms
37,436 KB
testcase_10 AC 53 ms
36,864 KB
testcase_11 AC 51 ms
37,212 KB
testcase_12 AC 53 ms
37,000 KB
testcase_13 AC 54 ms
37,332 KB
testcase_14 AC 51 ms
37,084 KB
testcase_15 AC 52 ms
37,112 KB
testcase_16 AC 54 ms
36,864 KB
testcase_17 AC 50 ms
37,336 KB
testcase_18 AC 53 ms
37,212 KB
testcase_19 AC 53 ms
36,984 KB
testcase_20 AC 53 ms
36,992 KB
testcase_21 AC 53 ms
37,412 KB
testcase_22 AC 54 ms
37,444 KB
testcase_23 AC 51 ms
36,992 KB
testcase_24 AC 54 ms
37,572 KB
testcase_25 AC 56 ms
36,852 KB
testcase_26 AC 57 ms
36,864 KB
testcase_27 AC 55 ms
37,456 KB
testcase_28 AC 57 ms
37,364 KB
testcase_29 RE -
testcase_30 AC 59 ms
37,212 KB
testcase_31 AC 57 ms
37,376 KB
testcase_32 AC 54 ms
37,340 KB
testcase_33 AC 52 ms
37,100 KB
testcase_34 AC 59 ms
37,576 KB
testcase_35 AC 51 ms
36,832 KB
testcase_36 AC 53 ms
37,212 KB
testcase_37 AC 58 ms
37,300 KB
testcase_38 AC 58 ms
37,000 KB
testcase_39 AC 58 ms
37,472 KB
testcase_40 AC 61 ms
37,368 KB
testcase_41 AC 58 ms
37,580 KB
testcase_42 AC 58 ms
37,384 KB
testcase_43 AC 59 ms
37,000 KB
testcase_44 AC 59 ms
36,864 KB
testcase_45 AC 59 ms
37,212 KB
testcase_46 AC 59 ms
37,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigDecimal;


public class No0552 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			long a = Long.parseLong(br.readLine());

			BigDecimal ans = new BigDecimal(a).multiply(BigDecimal.valueOf(10));
			System.out.println(ans);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0