結果

問題 No.552 十分簡単な星1の問題
ユーザー jimanojimano
提出日時 2018-01-22 23:15:42
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 503 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 37,444 KB
最終ジャッジ日時 2024-06-07 17:41:44
合計ジャッジ時間 7,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,132 KB
testcase_01 AC 49 ms
37,268 KB
testcase_02 AC 49 ms
36,972 KB
testcase_03 AC 48 ms
37,048 KB
testcase_04 AC 51 ms
37,180 KB
testcase_05 AC 51 ms
37,404 KB
testcase_06 AC 50 ms
37,368 KB
testcase_07 AC 49 ms
37,064 KB
testcase_08 AC 47 ms
37,384 KB
testcase_09 AC 48 ms
37,352 KB
testcase_10 AC 53 ms
36,888 KB
testcase_11 AC 49 ms
37,308 KB
testcase_12 AC 49 ms
36,856 KB
testcase_13 AC 50 ms
37,316 KB
testcase_14 AC 50 ms
37,048 KB
testcase_15 AC 50 ms
37,064 KB
testcase_16 AC 51 ms
37,152 KB
testcase_17 AC 48 ms
37,292 KB
testcase_18 AC 48 ms
37,148 KB
testcase_19 AC 47 ms
37,404 KB
testcase_20 AC 50 ms
37,424 KB
testcase_21 AC 50 ms
37,196 KB
testcase_22 AC 49 ms
37,240 KB
testcase_23 AC 49 ms
37,184 KB
testcase_24 AC 49 ms
37,096 KB
testcase_25 AC 48 ms
37,444 KB
testcase_26 AC 51 ms
37,008 KB
testcase_27 AC 51 ms
37,168 KB
testcase_28 AC 50 ms
36,996 KB
testcase_29 RE -
testcase_30 AC 50 ms
36,736 KB
testcase_31 AC 48 ms
36,872 KB
testcase_32 AC 51 ms
37,216 KB
testcase_33 AC 50 ms
37,204 KB
testcase_34 AC 50 ms
37,184 KB
testcase_35 AC 50 ms
37,152 KB
testcase_36 AC 50 ms
37,240 KB
testcase_37 AC 50 ms
37,356 KB
testcase_38 AC 50 ms
36,972 KB
testcase_39 AC 51 ms
37,344 KB
testcase_40 AC 50 ms
37,152 KB
testcase_41 AC 51 ms
37,176 KB
testcase_42 AC 50 ms
37,184 KB
testcase_43 AC 53 ms
37,404 KB
testcase_44 AC 51 ms
37,192 KB
testcase_45 AC 51 ms
37,060 KB
testcase_46 AC 49 ms
37,140 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