結果

問題 No.552 十分簡単な星1の問題
ユーザー yamax3232yamax3232
提出日時 2018-03-15 09:49:52
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 260 bytes
コンパイル時間 4,160 ms
コンパイル使用メモリ 80,100 KB
実行使用メモリ 41,828 KB
最終ジャッジ日時 2024-05-09 07:37:56
合計ジャッジ時間 12,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,308 KB
testcase_01 AC 138 ms
41,400 KB
testcase_02 AC 142 ms
41,532 KB
testcase_03 AC 138 ms
41,524 KB
testcase_04 AC 141 ms
41,708 KB
testcase_05 AC 137 ms
41,476 KB
testcase_06 AC 138 ms
41,708 KB
testcase_07 AC 138 ms
41,524 KB
testcase_08 AC 138 ms
41,532 KB
testcase_09 AC 141 ms
41,244 KB
testcase_10 AC 138 ms
41,508 KB
testcase_11 AC 141 ms
41,684 KB
testcase_12 AC 139 ms
41,304 KB
testcase_13 AC 141 ms
41,660 KB
testcase_14 AC 137 ms
41,176 KB
testcase_15 AC 137 ms
41,552 KB
testcase_16 AC 139 ms
41,648 KB
testcase_17 AC 138 ms
41,360 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 136 ms
41,312 KB
testcase_31 AC 138 ms
41,528 KB
testcase_32 AC 138 ms
41,576 KB
testcase_33 AC 137 ms
41,196 KB
testcase_34 AC 137 ms
41,336 KB
testcase_35 AC 136 ms
41,360 KB
testcase_36 AC 137 ms
41,460 KB
testcase_37 AC 140 ms
41,372 KB
testcase_38 AC 137 ms
41,664 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