結果

問題 No.552 十分簡単な星1の問題
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-05 03:22:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 4,250 ms
コンパイル使用メモリ 85,708 KB
実行使用メモリ 37,316 KB
最終ジャッジ日時 2024-11-16 19:11:15
合計ジャッジ時間 7,099 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,860 KB
testcase_01 AC 52 ms
36,768 KB
testcase_02 AC 50 ms
36,800 KB
testcase_03 AC 50 ms
36,816 KB
testcase_04 AC 49 ms
36,576 KB
testcase_05 AC 48 ms
36,800 KB
testcase_06 AC 54 ms
37,248 KB
testcase_07 AC 54 ms
37,192 KB
testcase_08 AC 55 ms
37,224 KB
testcase_09 AC 55 ms
37,192 KB
testcase_10 AC 55 ms
37,036 KB
testcase_11 AC 55 ms
37,060 KB
testcase_12 AC 56 ms
36,884 KB
testcase_13 AC 56 ms
36,960 KB
testcase_14 AC 54 ms
37,076 KB
testcase_15 AC 55 ms
36,872 KB
testcase_16 AC 54 ms
37,064 KB
testcase_17 AC 56 ms
36,936 KB
testcase_18 AC 55 ms
36,924 KB
testcase_19 AC 54 ms
36,996 KB
testcase_20 AC 55 ms
37,248 KB
testcase_21 AC 58 ms
36,972 KB
testcase_22 AC 54 ms
37,184 KB
testcase_23 AC 56 ms
36,960 KB
testcase_24 AC 54 ms
37,248 KB
testcase_25 AC 55 ms
37,228 KB
testcase_26 AC 56 ms
37,208 KB
testcase_27 AC 54 ms
37,316 KB
testcase_28 AC 53 ms
36,960 KB
testcase_29 AC 55 ms
37,072 KB
testcase_30 AC 55 ms
37,264 KB
testcase_31 AC 54 ms
36,700 KB
testcase_32 AC 58 ms
37,212 KB
testcase_33 AC 55 ms
37,208 KB
testcase_34 AC 54 ms
36,928 KB
testcase_35 AC 54 ms
36,928 KB
testcase_36 AC 53 ms
37,060 KB
testcase_37 AC 53 ms
37,108 KB
testcase_38 AC 56 ms
36,756 KB
testcase_39 AC 55 ms
36,884 KB
testcase_40 AC 55 ms
37,212 KB
testcase_41 AC 54 ms
37,232 KB
testcase_42 AC 54 ms
36,872 KB
testcase_43 AC 54 ms
37,160 KB
testcase_44 AC 55 ms
37,224 KB
testcase_45 AC 55 ms
37,064 KB
testcase_46 AC 56 ms
37,224 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