結果

問題 No.552 十分簡単な星1の問題
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 23:16:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 3,129 ms
コンパイル使用メモリ 73,456 KB
実行使用メモリ 57,832 KB
最終ジャッジ日時 2023-08-28 16:38:48
合計ジャッジ時間 10,463 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 120 ms
55,912 KB
testcase_02 AC 121 ms
55,948 KB
testcase_03 AC 119 ms
55,672 KB
testcase_04 AC 117 ms
55,572 KB
testcase_05 AC 121 ms
53,904 KB
testcase_06 AC 118 ms
55,780 KB
testcase_07 AC 121 ms
55,720 KB
testcase_08 AC 117 ms
55,492 KB
testcase_09 AC 120 ms
55,916 KB
testcase_10 AC 118 ms
56,060 KB
testcase_11 AC 118 ms
56,308 KB
testcase_12 AC 120 ms
55,504 KB
testcase_13 AC 122 ms
55,812 KB
testcase_14 AC 123 ms
55,600 KB
testcase_15 AC 122 ms
55,768 KB
testcase_16 AC 120 ms
55,932 KB
testcase_17 AC 119 ms
56,048 KB
testcase_18 AC 119 ms
55,756 KB
testcase_19 AC 120 ms
55,552 KB
testcase_20 AC 119 ms
55,788 KB
testcase_21 AC 122 ms
55,760 KB
testcase_22 AC 123 ms
55,924 KB
testcase_23 AC 122 ms
55,876 KB
testcase_24 AC 123 ms
55,528 KB
testcase_25 AC 119 ms
55,584 KB
testcase_26 AC 116 ms
56,104 KB
testcase_27 AC 116 ms
55,944 KB
testcase_28 AC 121 ms
55,268 KB
testcase_29 AC 115 ms
55,772 KB
testcase_30 AC 119 ms
56,220 KB
testcase_31 AC 120 ms
55,968 KB
testcase_32 AC 119 ms
55,960 KB
testcase_33 AC 118 ms
55,764 KB
testcase_34 AC 121 ms
55,880 KB
testcase_35 AC 120 ms
55,812 KB
testcase_36 AC 117 ms
56,116 KB
testcase_37 AC 119 ms
55,920 KB
testcase_38 AC 123 ms
55,780 KB
testcase_39 AC 120 ms
56,216 KB
testcase_40 AC 119 ms
55,660 KB
testcase_41 AC 118 ms
55,752 KB
testcase_42 AC 118 ms
55,516 KB
testcase_43 AC 116 ms
55,836 KB
testcase_44 AC 120 ms
55,768 KB
testcase_45 AC 119 ms
55,556 KB
testcase_46 AC 118 ms
55,956 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 == "0"){
			System.out.println("0");
		}else{
			System.out.println(str.concat("0"));
		}
	}

}
0