結果

問題 No.552 十分簡単な星1の問題
ユーザー matsuyoshimatsuyoshi
提出日時 2017-11-19 23:38:18
言語 Java19
(openjdk 21)
結果
WA  
実行時間 -
コード長 313 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 78,572 KB
実行使用メモリ 56,720 KB
最終ジャッジ日時 2023-08-17 06:23:17
合計ジャッジ時間 9,822 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 120 ms
55,992 KB
testcase_02 AC 117 ms
55,832 KB
testcase_03 AC 119 ms
55,548 KB
testcase_04 AC 121 ms
56,004 KB
testcase_05 AC 118 ms
56,360 KB
testcase_06 AC 118 ms
55,972 KB
testcase_07 AC 120 ms
56,148 KB
testcase_08 AC 120 ms
55,536 KB
testcase_09 AC 123 ms
55,996 KB
testcase_10 AC 120 ms
56,152 KB
testcase_11 AC 119 ms
55,856 KB
testcase_12 AC 120 ms
55,756 KB
testcase_13 AC 122 ms
55,824 KB
testcase_14 AC 123 ms
55,836 KB
testcase_15 AC 119 ms
56,024 KB
testcase_16 AC 121 ms
55,552 KB
testcase_17 AC 122 ms
56,304 KB
testcase_18 AC 121 ms
55,732 KB
testcase_19 AC 121 ms
55,928 KB
testcase_20 AC 119 ms
55,852 KB
testcase_21 AC 121 ms
56,200 KB
testcase_22 AC 124 ms
55,844 KB
testcase_23 AC 121 ms
56,212 KB
testcase_24 AC 125 ms
55,984 KB
testcase_25 AC 124 ms
55,812 KB
testcase_26 AC 118 ms
55,968 KB
testcase_27 AC 120 ms
56,052 KB
testcase_28 AC 120 ms
56,084 KB
testcase_29 AC 121 ms
56,720 KB
testcase_30 AC 123 ms
55,936 KB
testcase_31 AC 124 ms
55,732 KB
testcase_32 AC 120 ms
55,952 KB
testcase_33 AC 121 ms
56,004 KB
testcase_34 AC 120 ms
55,856 KB
testcase_35 AC 117 ms
56,164 KB
testcase_36 AC 118 ms
56,468 KB
testcase_37 AC 119 ms
56,012 KB
testcase_38 AC 119 ms
55,848 KB
testcase_39 AC 120 ms
55,812 KB
testcase_40 AC 122 ms
55,844 KB
testcase_41 AC 121 ms
56,156 KB
testcase_42 AC 122 ms
56,000 KB
testcase_43 AC 121 ms
56,236 KB
testcase_44 AC 122 ms
55,864 KB
testcase_45 AC 121 ms
56,148 KB
testcase_46 AC 120 ms
55,856 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();

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

        in.close();
    }
}
0