結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,368 KB
testcase_01 AC 68 ms
71,408 KB
testcase_02 AC 68 ms
71,272 KB
testcase_03 AC 72 ms
71,264 KB
testcase_04 AC 68 ms
71,340 KB
testcase_05 AC 68 ms
71,124 KB
testcase_06 AC 67 ms
71,356 KB
testcase_07 AC 67 ms
71,388 KB
testcase_08 AC 69 ms
71,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)
print('0' * (3 - n) + s)
0