結果

問題 No.964 2020
ユーザー uni_pythonuni_python
提出日時 2020-10-01 22:54:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,020 ms
コード長 312 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 87,268 KB
実行使用メモリ 71,464 KB
最終ジャッジ日時 2023-09-21 12:07:41
合計ジャッジ時間 2,590 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,228 KB
testcase_01 AC 69 ms
71,076 KB
testcase_02 AC 71 ms
71,248 KB
testcase_03 AC 69 ms
71,244 KB
testcase_04 AC 68 ms
71,288 KB
testcase_05 AC 68 ms
71,224 KB
testcase_06 AC 69 ms
71,400 KB
testcase_07 AC 69 ms
71,464 KB
testcase_08 AC 68 ms
71,428 KB
testcase_09 AC 68 ms
71,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N=I()
    now=""
    for i in range(1,N+1):
        a=str(i%10)*N
        now+=a
        
    print(now)
        


main()
0