結果

問題 No.552 十分簡単な星1の問題
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 23:14:55
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 3,779 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-12-29 21:33:51
合計ジャッジ時間 12,294 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 141 ms
41,080 KB
testcase_02 AC 142 ms
41,036 KB
testcase_03 AC 138 ms
40,928 KB
testcase_04 AC 123 ms
40,088 KB
testcase_05 AC 129 ms
39,984 KB
testcase_06 AC 125 ms
40,148 KB
testcase_07 AC 130 ms
39,904 KB
testcase_08 AC 136 ms
40,632 KB
testcase_09 AC 143 ms
41,320 KB
testcase_10 AC 133 ms
40,552 KB
testcase_11 AC 136 ms
40,468 KB
testcase_12 AC 140 ms
41,208 KB
testcase_13 AC 140 ms
41,016 KB
testcase_14 AC 142 ms
41,320 KB
testcase_15 AC 146 ms
41,268 KB
testcase_16 AC 144 ms
41,316 KB
testcase_17 AC 145 ms
41,456 KB
testcase_18 AC 147 ms
41,008 KB
testcase_19 AC 144 ms
40,804 KB
testcase_20 AC 146 ms
41,172 KB
testcase_21 AC 127 ms
39,956 KB
testcase_22 AC 141 ms
41,284 KB
testcase_23 AC 144 ms
41,012 KB
testcase_24 AC 141 ms
41,040 KB
testcase_25 AC 140 ms
41,052 KB
testcase_26 AC 138 ms
41,248 KB
testcase_27 AC 128 ms
39,956 KB
testcase_28 AC 139 ms
41,004 KB
testcase_29 AC 143 ms
41,072 KB
testcase_30 AC 124 ms
40,024 KB
testcase_31 AC 127 ms
39,956 KB
testcase_32 AC 141 ms
40,912 KB
testcase_33 AC 125 ms
39,956 KB
testcase_34 AC 144 ms
40,920 KB
testcase_35 AC 143 ms
41,180 KB
testcase_36 AC 130 ms
40,384 KB
testcase_37 AC 144 ms
40,916 KB
testcase_38 AC 142 ms
41,340 KB
testcase_39 AC 141 ms
40,996 KB
testcase_40 AC 131 ms
40,012 KB
testcase_41 AC 130 ms
40,096 KB
testcase_42 AC 126 ms
40,260 KB
testcase_43 AC 146 ms
40,920 KB
testcase_44 AC 139 ms
41,012 KB
testcase_45 AC 139 ms
41,328 KB
testcase_46 AC 140 ms
40,944 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