結果

問題 No.964 2020
ユーザー pypypymipypypymi
提出日時 2022-01-15 11:33:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 84 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 87,252 KB
実行使用メモリ 71,732 KB
最終ジャッジ日時 2023-08-13 15:01:14
合計ジャッジ時間 2,320 ms
ジャッジサーバーID
(参考情報)
judge11 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,292 KB
testcase_01 AC 64 ms
71,412 KB
testcase_02 AC 62 ms
71,688 KB
testcase_03 AC 64 ms
71,072 KB
testcase_04 AC 68 ms
71,408 KB
testcase_05 AC 60 ms
71,232 KB
testcase_06 AC 61 ms
71,580 KB
testcase_07 AC 61 ms
71,520 KB
testcase_08 AC 59 ms
71,504 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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