結果

問題 No.964 2020
ユーザー pypypymipypypymi
提出日時 2022-02-13 11:34:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,020 ms
コード長 92 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 71,476 KB
最終ジャッジ日時 2023-09-11 15:22:16
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,184 KB
testcase_01 AC 66 ms
71,400 KB
testcase_02 AC 66 ms
71,476 KB
testcase_03 AC 67 ms
71,116 KB
testcase_04 AC 63 ms
71,440 KB
testcase_05 AC 67 ms
71,204 KB
testcase_06 AC 66 ms
71,364 KB
testcase_07 AC 67 ms
71,464 KB
testcase_08 AC 67 ms
71,416 KB
testcase_09 AC 65 ms
71,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
result=""
for i in range(1,n+1):
    result+=str(i%10)*n
print(result)
    
0