結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | ngtkana |
提出日時 | 2020-03-19 23:32:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 658 bytes |
コンパイル時間 | 2,456 ms |
コンパイル使用メモリ | 207,744 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 0.44 |
最終ジャッジ日時 | 2024-07-17 03:17:18 |
合計ジャッジ時間 | 5,841 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,580 KB |
testcase_01 | AC | 24 ms
25,220 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include<bits/stdc++.h> using lint=long long; int main(){ std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false); std::cout.setf(std::ios_base::fixed);std::cout.precision(15); lint n;std::cin>>n; std::vector<lint>a(n); for(lint&x:a)std::cin>>x; std::vector<std::pair<lint,lint>>ans; for(lint i=0;i<n;i++){ for(lint j=i;j<n-1;j++){ if(a.at(j)>a.at(j+1)){ ans.emplace_back(j,j+1); std::swap(a.at(j),a.at(j+1)); } } } std::cout<<ans.size()<<'\n'; for(auto&&p:ans){ std::cout<<p.first<<" "<<p.second<<std::endl; } std::cin>>n; }