結果

問題 No.552 十分簡単な星1の問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-06-03 22:10:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 72,264 KB
実行使用メモリ 56,352 KB
最終ジャッジ日時 2023-09-12 22:00:10
合計ジャッジ時間 10,327 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 124 ms
55,484 KB
testcase_02 AC 126 ms
55,872 KB
testcase_03 AC 124 ms
55,724 KB
testcase_04 AC 123 ms
55,820 KB
testcase_05 AC 122 ms
55,568 KB
testcase_06 AC 123 ms
56,352 KB
testcase_07 AC 124 ms
55,352 KB
testcase_08 AC 125 ms
55,596 KB
testcase_09 AC 126 ms
55,840 KB
testcase_10 AC 125 ms
55,496 KB
testcase_11 AC 125 ms
55,516 KB
testcase_12 AC 124 ms
55,400 KB
testcase_13 AC 122 ms
55,560 KB
testcase_14 AC 123 ms
55,872 KB
testcase_15 AC 123 ms
55,460 KB
testcase_16 AC 132 ms
55,944 KB
testcase_17 AC 126 ms
55,836 KB
testcase_18 AC 125 ms
55,884 KB
testcase_19 AC 125 ms
55,596 KB
testcase_20 AC 126 ms
55,524 KB
testcase_21 AC 124 ms
56,056 KB
testcase_22 AC 124 ms
55,744 KB
testcase_23 AC 126 ms
55,432 KB
testcase_24 AC 124 ms
55,492 KB
testcase_25 AC 124 ms
55,940 KB
testcase_26 AC 125 ms
55,676 KB
testcase_27 AC 123 ms
55,556 KB
testcase_28 AC 123 ms
55,680 KB
testcase_29 AC 123 ms
56,100 KB
testcase_30 AC 125 ms
55,608 KB
testcase_31 AC 122 ms
55,228 KB
testcase_32 AC 122 ms
53,444 KB
testcase_33 AC 121 ms
55,364 KB
testcase_34 AC 123 ms
55,612 KB
testcase_35 AC 122 ms
55,208 KB
testcase_36 AC 125 ms
55,556 KB
testcase_37 AC 123 ms
55,624 KB
testcase_38 AC 122 ms
55,860 KB
testcase_39 AC 123 ms
55,876 KB
testcase_40 AC 122 ms
55,292 KB
testcase_41 AC 121 ms
55,864 KB
testcase_42 AC 121 ms
55,860 KB
testcase_43 AC 124 ms
55,792 KB
testcase_44 AC 123 ms
55,432 KB
testcase_45 AC 123 ms
55,500 KB
testcase_46 AC 120 ms
55,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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