結果

問題 No.1642 Registration
ユーザー merlinmerlin
提出日時 2021-08-13 21:21:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,740 ms
コンパイル使用メモリ 75,332 KB
実行使用メモリ 37,468 KB
最終ジャッジ日時 2024-10-03 16:46:45
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
36,912 KB
testcase_01 AC 51 ms
36,948 KB
testcase_02 AC 57 ms
36,828 KB
testcase_03 AC 52 ms
37,032 KB
testcase_04 AC 58 ms
37,468 KB
testcase_05 AC 51 ms
36,904 KB
testcase_06 AC 51 ms
36,808 KB
testcase_07 AC 57 ms
37,276 KB
testcase_08 AC 50 ms
37,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s=bu.readLine();
        while(s.length()<3) s="0"+s;
        System.out.print(s);
    }
}
0