結果

問題 No.397 NO MORE KADOMATSU
ユーザー beetbeet
提出日時 2018-08-01 15:37:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 1,711 ms
コンパイル使用メモリ 173,268 KB
実行使用メモリ 25,220 KB
平均クエリ数 427.39
最終ジャッジ日時 2024-07-17 01:51:16
合計ジャッジ時間 3,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
25,220 KB
testcase_01 AC 30 ms
25,220 KB
testcase_02 AC 30 ms
24,964 KB
testcase_03 AC 40 ms
25,076 KB
testcase_04 AC 33 ms
25,220 KB
testcase_05 AC 36 ms
25,220 KB
testcase_06 AC 35 ms
24,836 KB
testcase_07 AC 34 ms
24,836 KB
testcase_08 AC 33 ms
25,220 KB
testcase_09 AC 30 ms
25,220 KB
testcase_10 AC 34 ms
25,220 KB
testcase_11 AC 29 ms
25,092 KB
testcase_12 AC 33 ms
24,836 KB
testcase_13 AC 42 ms
24,964 KB
testcase_14 AC 42 ms
25,220 KB
testcase_15 AC 42 ms
25,092 KB
testcase_16 AC 30 ms
24,952 KB
testcase_17 AC 31 ms
25,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
//INSERT ABOVE HERE
signed main(){
  Int n;
  cin>>n;
  vector<Int> a(n);
  for(Int i=0;i<n;i++) cin>>a[i];
  using P = pair<Int, Int>;
  vector<P> ans;
  for(Int i=0;i<n;i++){
    for(Int j=0;j<n;j++){
      if(a[i]>a[j]){
	swap(a[i],a[j]);
	ans.emplace_back(i,j);
      }
    }
  }
  cout<<ans.size()<<endl;
  for(auto p:ans) cout<<p.first<<" "<<p.second<<endl;
  Int d;
  cin>>d;
  return 0;
}
0