結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 99 ms
39,884 KB
testcase_02 AC 115 ms
41,220 KB
testcase_03 AC 111 ms
41,320 KB
testcase_04 AC 100 ms
40,104 KB
testcase_05 AC 93 ms
39,960 KB
testcase_06 AC 110 ms
40,968 KB
testcase_07 AC 101 ms
40,216 KB
testcase_08 AC 112 ms
40,940 KB
testcase_09 AC 99 ms
39,880 KB
testcase_10 AC 110 ms
41,260 KB
testcase_11 AC 111 ms
40,788 KB
testcase_12 AC 112 ms
41,212 KB
testcase_13 AC 114 ms
41,268 KB
testcase_14 AC 115 ms
41,020 KB
testcase_15 AC 121 ms
41,284 KB
testcase_16 AC 107 ms
41,096 KB
testcase_17 AC 98 ms
40,248 KB
testcase_18 AC 100 ms
39,988 KB
testcase_19 AC 110 ms
41,580 KB
testcase_20 AC 101 ms
40,264 KB
testcase_21 AC 104 ms
40,492 KB
testcase_22 AC 111 ms
41,032 KB
testcase_23 AC 113 ms
41,028 KB
testcase_24 AC 116 ms
41,276 KB
testcase_25 AC 104 ms
40,120 KB
testcase_26 AC 112 ms
41,196 KB
testcase_27 AC 107 ms
41,348 KB
testcase_28 AC 108 ms
41,336 KB
testcase_29 AC 116 ms
41,768 KB
testcase_30 AC 113 ms
41,252 KB
testcase_31 AC 113 ms
40,828 KB
testcase_32 AC 110 ms
41,124 KB
testcase_33 AC 108 ms
40,116 KB
testcase_34 AC 132 ms
41,208 KB
testcase_35 AC 117 ms
41,244 KB
testcase_36 AC 122 ms
41,252 KB
testcase_37 AC 115 ms
41,204 KB
testcase_38 AC 103 ms
39,992 KB
testcase_39 AC 116 ms
41,256 KB
testcase_40 AC 109 ms
40,720 KB
testcase_41 AC 106 ms
40,244 KB
testcase_42 AC 114 ms
40,772 KB
testcase_43 AC 112 ms
40,652 KB
testcase_44 AC 120 ms
40,252 KB
testcase_45 AC 113 ms
41,288 KB
testcase_46 AC 113 ms
41,140 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