結果

問題 No.552 十分簡単な星1の問題
ユーザー yamax3232yamax3232
提出日時 2018-03-15 09:48:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 3,321 ms
コンパイル使用メモリ 76,432 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-12-15 17:20:21
合計ジャッジ時間 10,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 118 ms
52,624 KB
testcase_02 AC 126 ms
54,192 KB
testcase_03 AC 132 ms
53,944 KB
testcase_04 AC 115 ms
52,872 KB
testcase_05 AC 112 ms
53,052 KB
testcase_06 AC 128 ms
54,004 KB
testcase_07 AC 123 ms
54,120 KB
testcase_08 AC 129 ms
53,960 KB
testcase_09 AC 117 ms
52,616 KB
testcase_10 AC 118 ms
52,816 KB
testcase_11 AC 120 ms
53,696 KB
testcase_12 AC 124 ms
53,892 KB
testcase_13 AC 112 ms
53,004 KB
testcase_14 AC 119 ms
52,864 KB
testcase_15 AC 119 ms
52,780 KB
testcase_16 AC 122 ms
53,988 KB
testcase_17 AC 127 ms
53,968 KB
testcase_18 AC 125 ms
53,968 KB
testcase_19 AC 124 ms
53,844 KB
testcase_20 AC 123 ms
54,108 KB
testcase_21 AC 119 ms
52,548 KB
testcase_22 AC 127 ms
54,032 KB
testcase_23 AC 112 ms
53,452 KB
testcase_24 AC 124 ms
53,856 KB
testcase_25 AC 124 ms
53,984 KB
testcase_26 AC 115 ms
54,068 KB
testcase_27 AC 128 ms
54,076 KB
testcase_28 AC 126 ms
53,904 KB
testcase_29 AC 112 ms
53,092 KB
testcase_30 AC 117 ms
53,632 KB
testcase_31 AC 113 ms
52,868 KB
testcase_32 AC 122 ms
53,824 KB
testcase_33 AC 122 ms
53,960 KB
testcase_34 AC 123 ms
53,928 KB
testcase_35 AC 126 ms
54,108 KB
testcase_36 AC 122 ms
54,088 KB
testcase_37 AC 118 ms
52,664 KB
testcase_38 AC 113 ms
52,756 KB
testcase_39 AC 121 ms
53,812 KB
testcase_40 AC 124 ms
53,964 KB
testcase_41 AC 116 ms
52,712 KB
testcase_42 AC 120 ms
54,020 KB
testcase_43 AC 119 ms
52,892 KB
testcase_44 AC 125 ms
54,076 KB
testcase_45 AC 126 ms
54,232 KB
testcase_46 AC 121 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main7 {

	public static void main(String[] args) {
		Scanner kb=new Scanner(System.in);
		String n=kb.nextLine();
		if(n=="0"){
			System.out.println("0");	
		}else{
			System.out.println(n+"0");
		}
	}

}
0