結果

問題 No.490 yukiソート
ユーザー focusfocus
提出日時 2018-03-30 10:20:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 81,244 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 00:22:42
合計ジャッジ時間 1,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include<vector>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<map>
#include<set>
using namespace std;
int main (void) {
    long long int j,n,num;
    cin >> n;
    vector<long long int> a(n);
    for(long long int i=0;i<n;i++)    cin >> a[i];
    for(long long int x=1;x<2*n-3;x++){
        for(long long int i=0;i<x;i++){
            j = x-i;
            if(a[i]>a[j]&&j<n&&j>i) swap(a[i],a[j]);
            
        }
    }
    for(long long int i=0;i<n;i++)    cout << a[i] << " ";
    cout << endl;
    return 0;
}
0