結果

問題 No.1642 Registration
ユーザー merlinmerlin
提出日時 2021-08-13 21:21:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 5,146 ms
コンパイル使用メモリ 76,144 KB
実行使用メモリ 50,624 KB
最終ジャッジ日時 2024-04-14 16:32:42
合計ジャッジ時間 5,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,588 KB
testcase_01 AC 51 ms
49,868 KB
testcase_02 AC 58 ms
50,404 KB
testcase_03 AC 51 ms
49,952 KB
testcase_04 AC 58 ms
50,624 KB
testcase_05 AC 52 ms
50,244 KB
testcase_06 AC 52 ms
50,204 KB
testcase_07 AC 57 ms
50,592 KB
testcase_08 AC 51 ms
50,012 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