結果

問題 No.1642 Registration
ユーザー みーすけみーすけ
提出日時 2021-10-01 08:00:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 72,144 KB
実行使用メモリ 57,624 KB
最終ジャッジ日時 2023-09-25 16:55:56
合計ジャッジ時間 4,199 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,936 KB
testcase_01 AC 124 ms
55,672 KB
testcase_02 AC 124 ms
57,624 KB
testcase_03 AC 124 ms
55,884 KB
testcase_04 AC 124 ms
55,568 KB
testcase_05 AC 125 ms
56,196 KB
testcase_06 AC 124 ms
56,056 KB
testcase_07 AC 126 ms
55,468 KB
testcase_08 AC 125 ms
55,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        System.out.println(String.format("%03d", n));
    }
}
0