結果

問題 No.552 十分簡単な星1の問題
ユーザー rabirabi
提出日時 2019-06-27 10:41:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 3,120 ms
コンパイル使用メモリ 73,724 KB
実行使用メモリ 37,104 KB
最終ジャッジ日時 2024-06-27 13:36:32
合計ジャッジ時間 7,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 49 ms
36,920 KB
testcase_02 AC 49 ms
36,540 KB
testcase_03 AC 51 ms
36,668 KB
testcase_04 AC 49 ms
37,104 KB
testcase_05 AC 50 ms
36,720 KB
testcase_06 AC 53 ms
36,648 KB
testcase_07 AC 53 ms
36,788 KB
testcase_08 AC 52 ms
36,848 KB
testcase_09 AC 52 ms
36,880 KB
testcase_10 AC 53 ms
36,628 KB
testcase_11 AC 51 ms
36,844 KB
testcase_12 AC 50 ms
36,792 KB
testcase_13 AC 51 ms
36,976 KB
testcase_14 AC 52 ms
36,968 KB
testcase_15 AC 50 ms
37,020 KB
testcase_16 AC 51 ms
36,988 KB
testcase_17 AC 50 ms
36,972 KB
testcase_18 AC 49 ms
37,016 KB
testcase_19 AC 50 ms
36,988 KB
testcase_20 AC 51 ms
36,612 KB
testcase_21 AC 53 ms
36,576 KB
testcase_22 AC 53 ms
36,960 KB
testcase_23 AC 52 ms
36,756 KB
testcase_24 AC 51 ms
36,980 KB
testcase_25 AC 53 ms
36,820 KB
testcase_26 AC 52 ms
36,792 KB
testcase_27 AC 50 ms
36,664 KB
testcase_28 AC 51 ms
36,988 KB
testcase_29 AC 51 ms
36,760 KB
testcase_30 AC 51 ms
36,864 KB
testcase_31 AC 51 ms
36,640 KB
testcase_32 AC 51 ms
36,976 KB
testcase_33 AC 52 ms
36,844 KB
testcase_34 AC 52 ms
37,016 KB
testcase_35 AC 50 ms
36,792 KB
testcase_36 AC 53 ms
36,732 KB
testcase_37 AC 51 ms
36,972 KB
testcase_38 AC 51 ms
36,656 KB
testcase_39 AC 50 ms
36,752 KB
testcase_40 AC 50 ms
36,616 KB
testcase_41 AC 50 ms
36,984 KB
testcase_42 AC 53 ms
36,792 KB
testcase_43 AC 50 ms
36,908 KB
testcase_44 AC 50 ms
37,028 KB
testcase_45 AC 50 ms
36,984 KB
testcase_46 AC 50 ms
36,972 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