結果

問題 No.552 十分簡単な星1の問題
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 23:14:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 3,165 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-06-09 11:49:06
合計ジャッジ時間 9,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 115 ms
53,864 KB
testcase_02 AC 116 ms
53,836 KB
testcase_03 AC 98 ms
52,892 KB
testcase_04 AC 110 ms
54,088 KB
testcase_05 AC 115 ms
54,148 KB
testcase_06 AC 112 ms
54,064 KB
testcase_07 AC 118 ms
54,092 KB
testcase_08 AC 98 ms
53,016 KB
testcase_09 AC 100 ms
52,692 KB
testcase_10 AC 113 ms
53,904 KB
testcase_11 AC 111 ms
53,984 KB
testcase_12 AC 111 ms
53,880 KB
testcase_13 AC 109 ms
53,876 KB
testcase_14 AC 99 ms
52,900 KB
testcase_15 AC 107 ms
53,936 KB
testcase_16 AC 111 ms
53,972 KB
testcase_17 AC 112 ms
53,744 KB
testcase_18 AC 114 ms
53,960 KB
testcase_19 AC 111 ms
53,692 KB
testcase_20 AC 111 ms
53,844 KB
testcase_21 AC 114 ms
54,096 KB
testcase_22 AC 110 ms
54,052 KB
testcase_23 AC 110 ms
53,876 KB
testcase_24 AC 111 ms
53,956 KB
testcase_25 AC 111 ms
53,656 KB
testcase_26 AC 108 ms
52,852 KB
testcase_27 AC 109 ms
53,760 KB
testcase_28 AC 98 ms
52,864 KB
testcase_29 AC 94 ms
52,520 KB
testcase_30 AC 110 ms
54,088 KB
testcase_31 AC 111 ms
53,784 KB
testcase_32 AC 107 ms
54,036 KB
testcase_33 AC 101 ms
52,972 KB
testcase_34 AC 111 ms
54,072 KB
testcase_35 AC 109 ms
53,944 KB
testcase_36 AC 96 ms
52,992 KB
testcase_37 AC 114 ms
52,784 KB
testcase_38 AC 109 ms
54,140 KB
testcase_39 AC 113 ms
53,940 KB
testcase_40 AC 109 ms
53,624 KB
testcase_41 AC 102 ms
52,704 KB
testcase_42 AC 113 ms
54,068 KB
testcase_43 AC 110 ms
53,796 KB
testcase_44 AC 97 ms
52,564 KB
testcase_45 AC 110 ms
54,028 KB
testcase_46 AC 101 ms
54,388 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();
		System.out.println(str.concat("0"));

	}

}
0