結果

問題 No.100 直列あみだくじ
ユーザー char134217728char134217728
提出日時 2017-08-07 04:16:38
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 1,237 ms
コンパイル使用メモリ 157,696 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-11 23:04:21
合計ジャッジ時間 2,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41 WA * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:15:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
   15 | main(){
      | ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define FORR(i,a,b) for (int i=(a);i>=(b);i--)
#define pb push_back

using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef set<int> si;
const int inf = 1e9;
const int mod = 1e9+7;

int n, a[51];
main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cin >> n;
  FOR(i, 1, n+1){
    cin >> a[i];
  }
  int count = 0;
  FOR(i, 0, n){
    FOR(j, 1, n){
      if(a[j] > a[j+1]){
        swap(a[j], a[j+1]);
        count++;
      }
    }
  }
  cout << (count&1 ? "No" : "Yes") << endl;
}
0