結果

問題 No.552 十分簡単な星1の問題
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-05 03:22:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 3,389 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 37,372 KB
最終ジャッジ日時 2024-04-28 06:14:30
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,904 KB
testcase_01 AC 51 ms
36,952 KB
testcase_02 AC 50 ms
36,860 KB
testcase_03 AC 50 ms
37,096 KB
testcase_04 AC 51 ms
37,056 KB
testcase_05 AC 51 ms
36,984 KB
testcase_06 AC 57 ms
37,160 KB
testcase_07 AC 56 ms
37,344 KB
testcase_08 AC 56 ms
36,972 KB
testcase_09 AC 57 ms
37,352 KB
testcase_10 AC 57 ms
37,240 KB
testcase_11 AC 57 ms
37,020 KB
testcase_12 AC 56 ms
36,992 KB
testcase_13 AC 57 ms
37,256 KB
testcase_14 AC 56 ms
37,364 KB
testcase_15 AC 57 ms
37,012 KB
testcase_16 AC 57 ms
37,248 KB
testcase_17 AC 56 ms
37,296 KB
testcase_18 AC 57 ms
37,012 KB
testcase_19 AC 57 ms
37,216 KB
testcase_20 AC 57 ms
37,344 KB
testcase_21 AC 58 ms
37,192 KB
testcase_22 AC 58 ms
37,168 KB
testcase_23 AC 58 ms
37,212 KB
testcase_24 AC 57 ms
37,240 KB
testcase_25 AC 58 ms
37,208 KB
testcase_26 AC 58 ms
37,248 KB
testcase_27 AC 57 ms
37,012 KB
testcase_28 AC 55 ms
36,892 KB
testcase_29 AC 59 ms
37,256 KB
testcase_30 AC 60 ms
36,872 KB
testcase_31 AC 55 ms
36,728 KB
testcase_32 AC 56 ms
36,892 KB
testcase_33 AC 56 ms
37,160 KB
testcase_34 AC 56 ms
37,128 KB
testcase_35 AC 56 ms
37,284 KB
testcase_36 AC 57 ms
37,336 KB
testcase_37 AC 57 ms
37,012 KB
testcase_38 AC 57 ms
37,204 KB
testcase_39 AC 56 ms
37,352 KB
testcase_40 AC 56 ms
37,248 KB
testcase_41 AC 56 ms
37,160 KB
testcase_42 AC 57 ms
36,904 KB
testcase_43 AC 58 ms
37,012 KB
testcase_44 AC 58 ms
37,204 KB
testcase_45 AC 57 ms
36,884 KB
testcase_46 AC 57 ms
37,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No552{
	public static void main(String[] args) throws IOException{
		getAnswer();
	}
	public static void getAnswer() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String str = br.readLine();
		if(str.length() >= 2){
			System.out.println(str + "0");
		}
		else{
			System.out.println(Integer.parseInt(str) * 10);
		}
	}
}
0