結果

問題 No.490 yukiソート
ユーザー toto6114
提出日時 2019-07-03 18:36:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 73,592 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 13:35:12
合計ジャッジ時間 1,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
int main() {
  int n,a[2000];
  cin >> n;
  for(int i=0; i<n; i++) {
      cin >> a[i];
  }
  sort(a,a+n);
  for(int i=0; i<n-1; i++) {
      cout << a[i] << " ";
  }
  cout << a[n-1] << endl;
}
0