結果

問題 No.552 十分簡単な星1の問題
ユーザー samplelpmassamplelpmas
提出日時 2017-08-13 13:53:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 2,692 ms
コンパイル使用メモリ 76,764 KB
実行使用メモリ 42,024 KB
最終ジャッジ日時 2024-04-21 10:16:42
合計ジャッジ時間 12,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,472 KB
testcase_01 AC 161 ms
41,444 KB
testcase_02 AC 163 ms
41,576 KB
testcase_03 AC 159 ms
41,472 KB
testcase_04 AC 162 ms
41,220 KB
testcase_05 AC 164 ms
41,524 KB
testcase_06 AC 160 ms
41,408 KB
testcase_07 AC 159 ms
41,380 KB
testcase_08 AC 162 ms
41,472 KB
testcase_09 AC 160 ms
41,468 KB
testcase_10 AC 163 ms
41,504 KB
testcase_11 AC 160 ms
41,544 KB
testcase_12 AC 158 ms
41,060 KB
testcase_13 AC 160 ms
41,620 KB
testcase_14 AC 158 ms
41,364 KB
testcase_15 AC 161 ms
41,008 KB
testcase_16 AC 162 ms
41,044 KB
testcase_17 AC 159 ms
41,348 KB
testcase_18 AC 156 ms
41,308 KB
testcase_19 AC 160 ms
41,392 KB
testcase_20 AC 158 ms
41,308 KB
testcase_21 AC 159 ms
40,892 KB
testcase_22 AC 163 ms
41,672 KB
testcase_23 AC 161 ms
41,752 KB
testcase_24 AC 162 ms
41,192 KB
testcase_25 AC 159 ms
41,724 KB
testcase_26 AC 160 ms
41,364 KB
testcase_27 AC 161 ms
41,632 KB
testcase_28 AC 161 ms
41,332 KB
testcase_29 AC 161 ms
41,556 KB
testcase_30 AC 162 ms
41,848 KB
testcase_31 AC 162 ms
41,388 KB
testcase_32 AC 160 ms
41,596 KB
testcase_33 AC 163 ms
41,132 KB
testcase_34 AC 157 ms
41,460 KB
testcase_35 AC 159 ms
41,344 KB
testcase_36 AC 159 ms
41,360 KB
testcase_37 AC 166 ms
41,192 KB
testcase_38 AC 160 ms
40,980 KB
testcase_39 AC 159 ms
41,400 KB
testcase_40 AC 160 ms
41,600 KB
testcase_41 AC 160 ms
40,864 KB
testcase_42 AC 162 ms
41,444 KB
testcase_43 AC 160 ms
41,060 KB
testcase_44 AC 161 ms
41,192 KB
testcase_45 AC 164 ms
41,280 KB
testcase_46 AC 161 ms
42,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String N = sc.next();

        if (N.equals("0")) {
            System.out.println(N);
            return;
        }

        System.out.println(N + "0");

    }

}
0