結果

問題 No.552 十分簡単な星1の問題
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 23:17:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 3,213 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-06-09 11:51:19
合計ジャッジ時間 9,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,908 KB
testcase_01 AC 120 ms
53,788 KB
testcase_02 AC 115 ms
53,932 KB
testcase_03 AC 109 ms
53,852 KB
testcase_04 AC 107 ms
53,956 KB
testcase_05 AC 112 ms
53,844 KB
testcase_06 AC 110 ms
53,912 KB
testcase_07 AC 109 ms
53,784 KB
testcase_08 AC 110 ms
53,864 KB
testcase_09 AC 109 ms
54,188 KB
testcase_10 AC 97 ms
52,696 KB
testcase_11 AC 95 ms
52,736 KB
testcase_12 AC 100 ms
53,064 KB
testcase_13 AC 114 ms
54,132 KB
testcase_14 AC 110 ms
54,032 KB
testcase_15 AC 102 ms
52,856 KB
testcase_16 AC 102 ms
52,952 KB
testcase_17 AC 111 ms
53,888 KB
testcase_18 AC 98 ms
52,644 KB
testcase_19 AC 111 ms
53,676 KB
testcase_20 AC 106 ms
54,044 KB
testcase_21 AC 104 ms
53,304 KB
testcase_22 AC 104 ms
52,660 KB
testcase_23 AC 100 ms
52,564 KB
testcase_24 AC 111 ms
53,868 KB
testcase_25 AC 95 ms
52,644 KB
testcase_26 AC 113 ms
53,920 KB
testcase_27 AC 109 ms
53,752 KB
testcase_28 AC 108 ms
54,156 KB
testcase_29 AC 96 ms
52,500 KB
testcase_30 AC 99 ms
52,988 KB
testcase_31 AC 98 ms
52,692 KB
testcase_32 AC 109 ms
54,000 KB
testcase_33 AC 114 ms
53,756 KB
testcase_34 AC 97 ms
53,048 KB
testcase_35 AC 109 ms
53,804 KB
testcase_36 AC 108 ms
53,716 KB
testcase_37 AC 110 ms
54,488 KB
testcase_38 AC 117 ms
41,200 KB
testcase_39 AC 108 ms
41,304 KB
testcase_40 AC 103 ms
41,124 KB
testcase_41 AC 106 ms
40,988 KB
testcase_42 AC 106 ms
41,056 KB
testcase_43 AC 95 ms
40,260 KB
testcase_44 AC 96 ms
39,856 KB
testcase_45 AC 102 ms
40,780 KB
testcase_46 AC 107 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con552 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String str = s.nextLine();
		s.close();
		if(str.equals("0")){
			System.out.println("0");
		}else{
			System.out.println(str.concat("0"));
		}
	}

}
0