結果

問題 No.552 十分簡単な星1の問題
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-05 03:22:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 3,106 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 50,216 KB
最終ジャッジ日時 2023-08-10 13:00:46
合計ジャッジ時間 7,421 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,120 KB
testcase_01 AC 43 ms
49,128 KB
testcase_02 AC 43 ms
49,700 KB
testcase_03 AC 43 ms
49,280 KB
testcase_04 AC 43 ms
49,224 KB
testcase_05 AC 42 ms
49,276 KB
testcase_06 AC 52 ms
50,148 KB
testcase_07 AC 51 ms
49,632 KB
testcase_08 AC 51 ms
49,728 KB
testcase_09 AC 51 ms
49,992 KB
testcase_10 AC 51 ms
49,736 KB
testcase_11 AC 51 ms
50,104 KB
testcase_12 AC 51 ms
50,148 KB
testcase_13 AC 51 ms
49,644 KB
testcase_14 AC 50 ms
47,736 KB
testcase_15 AC 51 ms
49,708 KB
testcase_16 AC 51 ms
49,652 KB
testcase_17 AC 52 ms
49,704 KB
testcase_18 AC 52 ms
49,692 KB
testcase_19 AC 52 ms
50,100 KB
testcase_20 AC 51 ms
50,156 KB
testcase_21 AC 51 ms
49,864 KB
testcase_22 AC 52 ms
50,112 KB
testcase_23 AC 51 ms
49,752 KB
testcase_24 AC 52 ms
49,640 KB
testcase_25 AC 51 ms
49,500 KB
testcase_26 AC 52 ms
49,636 KB
testcase_27 AC 51 ms
49,928 KB
testcase_28 AC 52 ms
49,572 KB
testcase_29 AC 52 ms
49,628 KB
testcase_30 AC 52 ms
50,212 KB
testcase_31 AC 52 ms
50,144 KB
testcase_32 AC 52 ms
49,556 KB
testcase_33 AC 51 ms
49,716 KB
testcase_34 AC 51 ms
49,516 KB
testcase_35 AC 52 ms
49,808 KB
testcase_36 AC 51 ms
50,216 KB
testcase_37 AC 51 ms
49,704 KB
testcase_38 AC 51 ms
49,860 KB
testcase_39 AC 52 ms
49,636 KB
testcase_40 AC 50 ms
49,688 KB
testcase_41 AC 51 ms
49,728 KB
testcase_42 AC 51 ms
50,204 KB
testcase_43 AC 51 ms
49,768 KB
testcase_44 AC 51 ms
49,732 KB
testcase_45 AC 51 ms
49,660 KB
testcase_46 AC 50 ms
49,672 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