# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
414548 | 2021-05-30T16:02:21 Z | medmdg | MalnaRISC (COI21_malnarisc) | C++14 | 9 ms | 576 KB |
#include <bits/stdc++.h> #define ll long long using namespace std; int main() { ll n; cin>>n; vector<pair<ll,ll> > ans; for(int i=1;i<=n/2;i++){ for(int j=i+1;j<=n/2;j++){ ans.push_back(make_pair(i,j)); } } for(int i=n/2+1;i<n;i++){ for(int j=i+1;j<=n;j++){ ans.push_back(make_pair(i,j)); } } ll k=ans.size(); for(int i=n/2+1;i<=n;i++){ for(int j=1;j<=n/2;j++){ ans.push_back(make_pair(i,j)); } } cout<<ans.size()<<endl; for(int i=0;i<ans.size();i++){ cout<<"CMPSWP R"<<ans[i].first<<" R"<<ans[i].second<<endl; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 204 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 332 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 332 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 436 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 8 ms | 332 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 8 ms | 460 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 9 ms | 576 KB | not sorted |