結果

問題 No.552 十分簡単な星1の問題
ユーザー yamax3232yamax3232
提出日時 2018-03-15 09:49:52
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 260 bytes
コンパイル時間 3,605 ms
コンパイル使用メモリ 78,012 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-12-15 18:33:11
合計ジャッジ時間 10,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,944 KB
testcase_01 AC 120 ms
41,420 KB
testcase_02 AC 110 ms
41,272 KB
testcase_03 AC 120 ms
41,172 KB
testcase_04 AC 122 ms
41,068 KB
testcase_05 AC 112 ms
41,084 KB
testcase_06 AC 110 ms
40,976 KB
testcase_07 AC 121 ms
41,152 KB
testcase_08 AC 120 ms
41,008 KB
testcase_09 AC 117 ms
41,216 KB
testcase_10 AC 120 ms
40,956 KB
testcase_11 AC 113 ms
41,212 KB
testcase_12 AC 126 ms
40,964 KB
testcase_13 AC 120 ms
41,104 KB
testcase_14 AC 122 ms
41,320 KB
testcase_15 AC 123 ms
41,168 KB
testcase_16 AC 111 ms
41,008 KB
testcase_17 AC 121 ms
41,460 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 108 ms
40,904 KB
testcase_31 AC 123 ms
41,028 KB
testcase_32 AC 124 ms
41,020 KB
testcase_33 AC 124 ms
40,828 KB
testcase_34 AC 119 ms
39,916 KB
testcase_35 AC 123 ms
40,960 KB
testcase_36 AC 124 ms
41,208 KB
testcase_37 AC 120 ms
41,060 KB
testcase_38 AC 119 ms
41,288 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
権限があれば一括ダウンロードができます

ソースコード

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(Integer.parseInt(n)==0){
			System.out.println(n);	
		}else{
			System.out.println(n+"0");
		}
	}

}
0