답안 #237075

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
237075 2020-06-04T13:03:13 Z Aldas25 Cutting a rectangle (LMIO18_staciakampis) C++14
0 / 100
5 ms 384 KB
#include <bits/stdc++.h>

using namespace std;

#define FAST_IO ios_base::sync_with_stdio(0); cin.tie(nullptr)
#define FOR(i, a, b) for (int i = (a); i <= (b); i++)
#define REP(n) FOR(O, 1, (n))
#define pb push_back
#define f first
#define s second
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<pii> vii;

const int MAXN = 300100;

int n;
vii seq;

int main()
{
    FAST_IO;

    cin >> n;
    REP(n) {
        int a, b; cin >> a >> b;
        seq.pb({a,b});
    }

    bool ok = true;
    FOR(i, 1,n-1) if (seq[i].f != seq[0].f) ok = false;

    if (ok && n > 1 && seq[0].f > 1) {
        cout << "2\n1\n" << min(n, seq[0].f) << "\n";
    } else cout << "1\n1\n";

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -