結果

問題 No.552 十分簡単な星1の問題
ユーザー matsuyoshimatsuyoshi
提出日時 2017-11-19 23:39:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 56,368 KB
最終ジャッジ日時 2023-08-17 06:23:27
合計ジャッジ時間 9,548 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 121 ms
56,368 KB
testcase_02 AC 123 ms
55,824 KB
testcase_03 AC 121 ms
55,892 KB
testcase_04 AC 125 ms
55,520 KB
testcase_05 AC 124 ms
56,188 KB
testcase_06 AC 124 ms
56,108 KB
testcase_07 AC 121 ms
56,020 KB
testcase_08 AC 124 ms
56,096 KB
testcase_09 AC 120 ms
56,036 KB
testcase_10 AC 125 ms
55,860 KB
testcase_11 AC 122 ms
55,944 KB
testcase_12 AC 121 ms
55,992 KB
testcase_13 AC 122 ms
55,936 KB
testcase_14 AC 124 ms
55,876 KB
testcase_15 AC 123 ms
54,328 KB
testcase_16 AC 123 ms
55,932 KB
testcase_17 AC 123 ms
55,724 KB
testcase_18 AC 120 ms
55,716 KB
testcase_19 AC 121 ms
53,828 KB
testcase_20 AC 121 ms
55,852 KB
testcase_21 AC 120 ms
56,080 KB
testcase_22 AC 121 ms
55,744 KB
testcase_23 AC 124 ms
55,880 KB
testcase_24 AC 121 ms
55,896 KB
testcase_25 AC 120 ms
56,320 KB
testcase_26 AC 124 ms
55,828 KB
testcase_27 AC 124 ms
55,952 KB
testcase_28 AC 124 ms
56,228 KB
testcase_29 AC 119 ms
56,256 KB
testcase_30 AC 123 ms
56,132 KB
testcase_31 AC 123 ms
55,924 KB
testcase_32 AC 125 ms
55,948 KB
testcase_33 AC 124 ms
55,636 KB
testcase_34 AC 121 ms
56,080 KB
testcase_35 AC 125 ms
55,980 KB
testcase_36 AC 124 ms
56,064 KB
testcase_37 AC 124 ms
55,908 KB
testcase_38 AC 121 ms
56,124 KB
testcase_39 AC 117 ms
56,060 KB
testcase_40 AC 122 ms
55,548 KB
testcase_41 AC 124 ms
55,908 KB
testcase_42 AC 121 ms
55,752 KB
testcase_43 AC 124 ms
55,592 KB
testcase_44 AC 120 ms
55,880 KB
testcase_45 AC 119 ms
56,108 KB
testcase_46 AC 122 ms
55,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String s = in.nextLine();

        if (s != "0") {
            System.out.println(s + "0");
        } else {
            System.out.println("0");
        }

        in.close();
    }
}
0