結果

問題 No.552 十分簡単な星1の問題
ユーザー matsuyoshimatsuyoshi
提出日時 2017-11-19 23:39:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 77,232 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-05-04 13:18:12
合計ジャッジ時間 8,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 105 ms
40,908 KB
testcase_02 AC 111 ms
41,304 KB
testcase_03 AC 111 ms
41,036 KB
testcase_04 AC 101 ms
40,260 KB
testcase_05 AC 118 ms
41,240 KB
testcase_06 AC 103 ms
39,988 KB
testcase_07 AC 124 ms
41,512 KB
testcase_08 AC 100 ms
40,056 KB
testcase_09 AC 99 ms
40,060 KB
testcase_10 AC 122 ms
41,216 KB
testcase_11 AC 125 ms
41,252 KB
testcase_12 AC 118 ms
40,924 KB
testcase_13 AC 101 ms
40,472 KB
testcase_14 AC 129 ms
41,288 KB
testcase_15 AC 121 ms
41,312 KB
testcase_16 AC 116 ms
41,476 KB
testcase_17 AC 121 ms
41,276 KB
testcase_18 AC 109 ms
39,920 KB
testcase_19 AC 103 ms
40,272 KB
testcase_20 AC 101 ms
40,244 KB
testcase_21 AC 113 ms
41,076 KB
testcase_22 AC 109 ms
41,132 KB
testcase_23 AC 108 ms
41,288 KB
testcase_24 AC 111 ms
41,232 KB
testcase_25 AC 100 ms
40,040 KB
testcase_26 AC 110 ms
41,280 KB
testcase_27 AC 115 ms
41,080 KB
testcase_28 AC 114 ms
41,336 KB
testcase_29 AC 133 ms
41,648 KB
testcase_30 AC 107 ms
41,132 KB
testcase_31 AC 107 ms
41,116 KB
testcase_32 AC 112 ms
41,124 KB
testcase_33 AC 107 ms
41,168 KB
testcase_34 AC 112 ms
41,384 KB
testcase_35 AC 117 ms
41,272 KB
testcase_36 AC 99 ms
40,268 KB
testcase_37 AC 110 ms
40,760 KB
testcase_38 AC 110 ms
41,108 KB
testcase_39 AC 100 ms
40,268 KB
testcase_40 AC 108 ms
41,032 KB
testcase_41 AC 107 ms
41,480 KB
testcase_42 AC 109 ms
40,988 KB
testcase_43 AC 113 ms
41,448 KB
testcase_44 AC 115 ms
41,400 KB
testcase_45 AC 100 ms
40,208 KB
testcase_46 AC 97 ms
39,964 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