結果

問題 No.490 yukiソート
ユーザー JunOnumaJunOnuma
提出日時 2017-06-09 15:22:43
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 90 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-22 14:24:53
合計ジャッジ時間 1,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(raw_input())
l = sorted(map(int, raw_input().split()))
print ' '.join(map(str,l))
0