結果

問題 No.1642 Registration
ユーザー みーすけみーすけ
提出日時 2021-10-01 08:00:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 1,854 ms
コンパイル使用メモリ 75,000 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-18 13:18:33
合計ジャッジ時間 3,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,212 KB
testcase_01 AC 115 ms
41,364 KB
testcase_02 AC 118 ms
41,516 KB
testcase_03 AC 119 ms
41,464 KB
testcase_04 AC 118 ms
41,244 KB
testcase_05 AC 117 ms
41,348 KB
testcase_06 AC 125 ms
41,260 KB
testcase_07 AC 118 ms
41,308 KB
testcase_08 AC 110 ms
40,516 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