Une autre possibilité : modifier `tocnumwidth`
\documentclass[numbers=endperiod]{scrreprt}
\RedeclareSectionCommand[
tocnumwidth=3em % normalement 1.5em
]{chapter}
\begin{document}
\tableofcontents
\chapter{Chapitre 1}
\chapter{Chapitre 2}
\chapter{Chapitre 3}
\chapter{Chapitre 4}
\chapter{Chapitre 5}
\chapter{Chapitre 6}
\chapter{Chapitre 7}
\chapter{Chapitre 8}
\chapter{Chapitre 9}
\chapter{Chapitre 10}
\chapter{Chapitre 11}
\end{document}
![alt text][1]
Pour aligner les numéros à droite :
\documentclass[numbers=endperiod]{scrreprt}
\RedeclareSectionCommand[
tocdynnumwidth,
tocentrynumberformat=\chapterentrynumberformat
]{chapter}
\newcommand\chapterentrynumberformat[1]{\hfill#1\enspace}
\begin{document}
\tableofcontents
\chapter{Chapitre 1}
\chapter{Chapitre 2}
\chapter{Chapitre 3}
\chapter{Chapitre 4}
\chapter{Chapitre 5}
\chapter{Chapitre 6}
\chapter{Chapitre 7}
\chapter{Chapitre 8}
\chapter{Chapitre 9}
\chapter{Chapitre 10}
\chapter{Chapitre 11}
\end{document}
![alt text][2]
[1]: https://texnique.fr/osqa/upfiles/Screen_Shot_2019-05-27_at_22.10.04.png
[2]: http://https://texnique.fr/osqa/upfiles/Screen_Shot_2019-05-27_at_22.08.25.png