結果

問題 No.1642 Registration
ユーザー ygd.ygd.
提出日時 2021-08-13 21:21:07
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,088 KB
実行使用メモリ 71,468 KB
最終ジャッジ日時 2023-07-27 03:05:11
合計ジャッジ時間 1,672 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,380 KB
testcase_01 AC 70 ms
71,176 KB
testcase_02 AC 70 ms
71,468 KB
testcase_03 AC 67 ms
71,364 KB
testcase_04 AC 68 ms
71,404 KB
testcase_05 AC 68 ms
71,460 KB
testcase_06 AC 70 ms
71,464 KB
testcase_07 AC 70 ms
71,412 KB
testcase_08 AC 70 ms
71,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = str(input())
    while len(n) < 3:
        n = "0" + n
    print(n)




if __name__ == '__main__':
    main()
0