結果

問題 No.552 十分簡単な星1の問題
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 23:14:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 5,725 ms
コンパイル使用メモリ 71,008 KB
実行使用メモリ 56,264 KB
最終ジャッジ日時 2023-08-28 16:37:46
合計ジャッジ時間 11,344 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 124 ms
55,600 KB
testcase_02 AC 122 ms
55,296 KB
testcase_03 AC 123 ms
55,560 KB
testcase_04 AC 116 ms
55,732 KB
testcase_05 AC 120 ms
55,652 KB
testcase_06 AC 122 ms
55,848 KB
testcase_07 AC 122 ms
55,896 KB
testcase_08 AC 122 ms
55,664 KB
testcase_09 AC 120 ms
54,168 KB
testcase_10 AC 119 ms
55,760 KB
testcase_11 AC 119 ms
55,632 KB
testcase_12 AC 120 ms
55,448 KB
testcase_13 AC 118 ms
55,592 KB
testcase_14 AC 121 ms
55,972 KB
testcase_15 AC 119 ms
55,736 KB
testcase_16 AC 119 ms
55,668 KB
testcase_17 AC 121 ms
55,936 KB
testcase_18 AC 119 ms
55,684 KB
testcase_19 AC 125 ms
55,832 KB
testcase_20 AC 120 ms
56,176 KB
testcase_21 AC 121 ms
55,876 KB
testcase_22 AC 120 ms
56,220 KB
testcase_23 AC 119 ms
53,748 KB
testcase_24 AC 121 ms
55,524 KB
testcase_25 AC 119 ms
56,052 KB
testcase_26 AC 121 ms
55,516 KB
testcase_27 AC 122 ms
55,832 KB
testcase_28 AC 122 ms
55,620 KB
testcase_29 AC 120 ms
56,264 KB
testcase_30 AC 120 ms
55,784 KB
testcase_31 AC 119 ms
55,520 KB
testcase_32 AC 117 ms
55,628 KB
testcase_33 AC 118 ms
55,760 KB
testcase_34 AC 122 ms
55,796 KB
testcase_35 AC 119 ms
55,752 KB
testcase_36 AC 117 ms
55,784 KB
testcase_37 AC 117 ms
54,120 KB
testcase_38 AC 118 ms
55,636 KB
testcase_39 AC 117 ms
55,264 KB
testcase_40 AC 118 ms
55,880 KB
testcase_41 AC 117 ms
55,800 KB
testcase_42 AC 118 ms
55,600 KB
testcase_43 AC 117 ms
56,216 KB
testcase_44 AC 119 ms
56,016 KB
testcase_45 AC 117 ms
55,576 KB
testcase_46 AC 118 ms
55,484 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