結果

問題 No.490 yukiソート
ユーザー ohanaohana
提出日時 2023-10-20 10:34:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 71 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 64,316 KB
最終ジャッジ日時 2024-09-20 06:07:52
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
print(*sorted(A))
0