結果

問題 No.964 2020
ユーザー akitsugu777akitsugu777
提出日時 2020-05-26 11:31:48
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 82 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 10,548 KB
実行使用メモリ 7,956 KB
最終ジャッジ日時 2023-08-03 04:49:58
合計ジャッジ時間 1,353 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 14 ms
7,864 KB
testcase_02 AC 14 ms
7,956 KB
testcase_03 AC 14 ms
7,932 KB
testcase_04 AC 13 ms
7,924 KB
testcase_05 AC 14 ms
7,728 KB
testcase_06 AC 13 ms
7,776 KB
testcase_07 AC 14 ms
7,832 KB
testcase_08 AC 14 ms
7,840 KB
testcase_09 AC 13 ms
7,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
s = ''

for i in range(N, 0, -1):
    s += str(i-1) * N

print(s)
0