結果

問題 No.552 十分簡単な星1の問題
ユーザー rabirabi
提出日時 2019-06-27 10:41:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 4,259 ms
コンパイル使用メモリ 71,304 KB
実行使用メモリ 49,784 KB
最終ジャッジ日時 2023-09-09 21:07:01
合計ジャッジ時間 8,053 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
49,236 KB
testcase_02 AC 44 ms
49,164 KB
testcase_03 AC 44 ms
49,324 KB
testcase_04 AC 44 ms
49,260 KB
testcase_05 AC 44 ms
49,260 KB
testcase_06 AC 44 ms
49,284 KB
testcase_07 AC 44 ms
49,204 KB
testcase_08 AC 43 ms
49,208 KB
testcase_09 AC 43 ms
49,600 KB
testcase_10 AC 44 ms
49,232 KB
testcase_11 AC 43 ms
49,496 KB
testcase_12 AC 45 ms
49,368 KB
testcase_13 AC 44 ms
49,132 KB
testcase_14 AC 43 ms
49,668 KB
testcase_15 AC 45 ms
49,212 KB
testcase_16 AC 43 ms
49,152 KB
testcase_17 AC 44 ms
49,344 KB
testcase_18 AC 44 ms
49,496 KB
testcase_19 AC 45 ms
49,132 KB
testcase_20 AC 45 ms
49,484 KB
testcase_21 AC 43 ms
49,148 KB
testcase_22 AC 47 ms
49,388 KB
testcase_23 AC 44 ms
49,500 KB
testcase_24 AC 44 ms
49,144 KB
testcase_25 AC 44 ms
49,136 KB
testcase_26 AC 44 ms
49,332 KB
testcase_27 AC 43 ms
49,348 KB
testcase_28 AC 43 ms
49,292 KB
testcase_29 AC 44 ms
49,228 KB
testcase_30 AC 44 ms
49,372 KB
testcase_31 AC 44 ms
49,256 KB
testcase_32 AC 45 ms
49,256 KB
testcase_33 AC 45 ms
49,208 KB
testcase_34 AC 44 ms
49,212 KB
testcase_35 AC 44 ms
49,232 KB
testcase_36 AC 44 ms
49,396 KB
testcase_37 AC 44 ms
49,708 KB
testcase_38 AC 45 ms
49,488 KB
testcase_39 AC 43 ms
49,268 KB
testcase_40 AC 44 ms
49,144 KB
testcase_41 AC 44 ms
49,352 KB
testcase_42 AC 44 ms
49,784 KB
testcase_43 AC 46 ms
49,200 KB
testcase_44 AC 44 ms
49,332 KB
testcase_45 AC 44 ms
49,332 KB
testcase_46 AC 43 ms
49,732 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());
		System.out.println(sb.append("0"));
	}
}
0