結果

問題 No.1642 Registration
ユーザー merlinmerlin
提出日時 2021-08-13 21:21:55
言語 Java19
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,484 ms
コンパイル使用メモリ 73,260 KB
実行使用メモリ 50,160 KB
最終ジャッジ日時 2023-07-27 03:08:07
合計ジャッジ時間 3,614 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
47,968 KB
testcase_01 AC 43 ms
49,468 KB
testcase_02 AC 52 ms
49,772 KB
testcase_03 AC 43 ms
49,212 KB
testcase_04 AC 52 ms
49,836 KB
testcase_05 AC 42 ms
49,136 KB
testcase_06 AC 43 ms
49,352 KB
testcase_07 AC 52 ms
50,160 KB
testcase_08 AC 43 ms
49,208 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