結果
| 問題 | No.964 2020 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-02-03 20:46:53 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 2,020 ms |
| コード長 | 249 bytes |
| 記録 | |
| コンパイル時間 | 135 ms |
| コンパイル使用メモリ | 85,640 KB |
| 実行使用メモリ | 57,632 KB |
| 最終ジャッジ日時 | 2026-04-15 02:29:58 |
| 合計ジャッジ時間 | 1,330 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
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)