結果

問題 No.964 2020
ユーザー Navier_Boltzmann
提出日時 2024-02-03 20:46:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,020 ms
コード長 249 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 55,424 KB
最終ジャッジ日時 2024-09-28 10:59:07
合計ジャッジ時間 1,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())

X = [str(i) for i in range(9,-1,-1)]
ans = ''
for i in range(N):
    ans += X[i]*N
print(ans)
0