結果

問題 No.552 十分簡単な星1の問題
ユーザー rabirabi
提出日時 2019-06-27 10:53:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 3,319 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 50,440 KB
最終ジャッジ日時 2024-06-27 13:45:23
合計ジャッジ時間 6,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 54 ms
50,352 KB
testcase_02 AC 55 ms
50,348 KB
testcase_03 AC 54 ms
50,076 KB
testcase_04 AC 54 ms
50,440 KB
testcase_05 AC 53 ms
49,884 KB
testcase_06 AC 54 ms
50,304 KB
testcase_07 AC 54 ms
50,208 KB
testcase_08 AC 54 ms
50,244 KB
testcase_09 AC 55 ms
50,232 KB
testcase_10 AC 54 ms
50,156 KB
testcase_11 AC 55 ms
50,204 KB
testcase_12 AC 54 ms
49,904 KB
testcase_13 AC 54 ms
50,336 KB
testcase_14 AC 54 ms
49,832 KB
testcase_15 AC 55 ms
50,180 KB
testcase_16 AC 54 ms
50,244 KB
testcase_17 AC 54 ms
50,412 KB
testcase_18 AC 53 ms
49,892 KB
testcase_19 AC 54 ms
50,084 KB
testcase_20 AC 53 ms
50,076 KB
testcase_21 AC 54 ms
50,224 KB
testcase_22 AC 54 ms
50,312 KB
testcase_23 AC 54 ms
50,204 KB
testcase_24 AC 55 ms
49,872 KB
testcase_25 AC 54 ms
49,896 KB
testcase_26 AC 54 ms
50,276 KB
testcase_27 AC 54 ms
50,200 KB
testcase_28 AC 53 ms
50,220 KB
testcase_29 AC 54 ms
50,020 KB
testcase_30 AC 54 ms
50,100 KB
testcase_31 AC 54 ms
50,084 KB
testcase_32 AC 54 ms
50,072 KB
testcase_33 AC 54 ms
50,172 KB
testcase_34 AC 53 ms
49,980 KB
testcase_35 AC 54 ms
49,836 KB
testcase_36 AC 53 ms
50,268 KB
testcase_37 AC 53 ms
50,276 KB
testcase_38 AC 53 ms
50,200 KB
testcase_39 AC 53 ms
50,224 KB
testcase_40 AC 53 ms
50,212 KB
testcase_41 AC 53 ms
49,900 KB
testcase_42 AC 53 ms
50,028 KB
testcase_43 AC 54 ms
50,248 KB
testcase_44 AC 54 ms
50,256 KB
testcase_45 AC 53 ms
50,296 KB
testcase_46 AC 54 ms
50,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Tester {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder(br.readLine());
		if (sb.length() != 0) {
			if (!sb.toString().equals("0")) {
				System.out.println(sb.append("0"));
			}
		}
	}
}
0