結果

問題 No.552 十分簡単な星1の問題
ユーザー tentententen
提出日時 2020-11-12 08:51:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 76,656 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-07-22 19:01:11
合計ジャッジ時間 8,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,956 KB
testcase_01 AC 102 ms
41,032 KB
testcase_02 AC 105 ms
41,196 KB
testcase_03 AC 104 ms
41,060 KB
testcase_04 AC 106 ms
41,160 KB
testcase_05 AC 104 ms
41,124 KB
testcase_06 AC 100 ms
41,168 KB
testcase_07 AC 92 ms
39,900 KB
testcase_08 AC 104 ms
41,040 KB
testcase_09 AC 115 ms
41,076 KB
testcase_10 AC 100 ms
41,288 KB
testcase_11 AC 95 ms
40,552 KB
testcase_12 AC 105 ms
41,056 KB
testcase_13 AC 94 ms
39,924 KB
testcase_14 AC 105 ms
41,284 KB
testcase_15 AC 106 ms
40,912 KB
testcase_16 AC 108 ms
41,112 KB
testcase_17 AC 112 ms
41,292 KB
testcase_18 AC 94 ms
40,316 KB
testcase_19 AC 105 ms
41,292 KB
testcase_20 AC 107 ms
41,256 KB
testcase_21 AC 106 ms
41,172 KB
testcase_22 AC 104 ms
40,736 KB
testcase_23 AC 104 ms
41,044 KB
testcase_24 AC 106 ms
41,272 KB
testcase_25 AC 94 ms
40,284 KB
testcase_26 AC 104 ms
41,308 KB
testcase_27 AC 103 ms
41,200 KB
testcase_28 AC 101 ms
40,924 KB
testcase_29 AC 108 ms
41,236 KB
testcase_30 AC 109 ms
41,076 KB
testcase_31 AC 122 ms
41,036 KB
testcase_32 AC 123 ms
41,292 KB
testcase_33 AC 125 ms
41,020 KB
testcase_34 AC 102 ms
40,148 KB
testcase_35 AC 107 ms
40,916 KB
testcase_36 AC 111 ms
41,412 KB
testcase_37 AC 104 ms
40,920 KB
testcase_38 AC 105 ms
41,336 KB
testcase_39 AC 94 ms
40,104 KB
testcase_40 AC 102 ms
41,132 KB
testcase_41 AC 101 ms
40,284 KB
testcase_42 AC 100 ms
40,516 KB
testcase_43 AC 105 ms
41,204 KB
testcase_44 AC 95 ms
40,112 KB
testcase_45 AC 103 ms
41,128 KB
testcase_46 AC 100 ms
40,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        if (s.equals("0")) {
            System.out.println(s);
        } else {
            System.out.println(s + "0");
        }
    }
}
0