結果

問題 No.1642 Registration
ユーザー U SU S
提出日時 2021-08-13 21:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 61,676 KB
最終ジャッジ日時 2024-04-14 16:32:01
合計ジャッジ時間 1,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,316 KB
testcase_01 AC 46 ms
61,464 KB
testcase_02 AC 46 ms
61,676 KB
testcase_03 AC 47 ms
60,640 KB
testcase_04 AC 47 ms
60,864 KB
testcase_05 AC 47 ms
60,688 KB
testcase_06 AC 47 ms
61,344 KB
testcase_07 AC 45 ms
60,892 KB
testcase_08 AC 46 ms
61,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# #sys.setrecursionlimit(1000000)
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
import math
import bisect
from copy import deepcopy as dc
from itertools import accumulate
from collections import Counter, defaultdict, deque
import itertools
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1
inf = int(1e30)
mod = int(1e9+7)

n = input()
print(n.zfill(3))
0