結果

問題 No.964 2020
ユーザー takakintakakin
提出日時 2020-04-18 22:18:47
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 1,159 ms
コンパイル使用メモリ 10,564 KB
実行使用メモリ 8,012 KB
最終ジャッジ日時 2023-07-27 08:27:26
合計ジャッジ時間 1,289 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 16 ms
7,788 KB
testcase_02 AC 15 ms
7,776 KB
testcase_03 AC 16 ms
7,824 KB
testcase_04 AC 16 ms
7,896 KB
testcase_05 AC 16 ms
7,816 KB
testcase_06 AC 16 ms
7,788 KB
testcase_07 AC 16 ms
7,928 KB
testcase_08 AC 16 ms
7,896 KB
testcase_09 AC 16 ms
7,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
Ans=[str(i) for i in range(n)]*n
Ans.sort(reverse=True)
print(*Ans,sep="")
0