Submission #1753203


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<ll, ll> P;

#define each(i,a) for (auto&& i : a)
#define FOR(i,a,b) for (ll i=(a),__last_##i=(b);i<__last_##i;i++)
#define RFOR(i,a,b) for (ll i=(b)-1,__last_##i=(a);i>=__last_##i;i--)
#define REP(i,n) FOR(i,0,n)
#define RREP(i,n) RFOR(i,0,n)
#define __GET_MACRO3(_1, _2, _3, NAME, ...) NAME
#define rep(...) __GET_MACRO3(__VA_ARGS__, FOR, REP)(__VA_ARGS__)
#define rrep(...) __GET_MACRO3(__VA_ARGS__, RFOR, RREP)(__VA_ARGS__)
#define pb push_back
#define all(a) (a).begin(),(a).end()
#define chmin(x,v) x = min(x, v)
#define chmax(x,v) x = max(x, v)

const ll linf = 1e18;
const double eps = 1e-12;
const double pi = acos(-1);

template<typename T>
istream& operator>>(istream& is, vector<T>& vec) {
    each(x,vec) is >> x;
    return is;
}
template<typename T>
ostream& operator<<(ostream& os, const vector<T>& vec) {
    rep(i,vec.size()) {
        if (i) os << " ";
        os << vec[i];
    }
    return os;
}
template<typename T>
ostream& operator<<(ostream& os, const vector< vector<T> >& vec) {
    rep(i,vec.size()) {
        if (i) os << endl;
        os << vec[i];
    }
    return os;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll a, s; cin >> a >> s;
    if (a >= s) {
        cout << "Congratulations!" << endl;
    }
    else {
        cout << "Enjoy another semester..." << endl;
    }
}

Submission Info

Submission Time
Task B - もう1年遊べるドン?
User drafear
Language C++14 (GCC 5.4.1)
Score 100
Code Size 1471 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 24
Set Name Test Cases
All 00-sample1, 00-sample2, 00-sample3, 10-edge, 50-random00, 50-random01, 50-random02, 50-random03, 50-random04, 50-random05, 50-random06, 50-random07, 50-random08, 50-random09, 50-random10, 50-random11, 50-random12, 50-random13, 50-random14, 50-random15, 50-random16, 50-random17, 50-random18, 50-random19
Case Name Status Exec Time Memory
00-sample1 AC 1 ms 256 KB
00-sample2 AC 1 ms 256 KB
00-sample3 AC 1 ms 256 KB
10-edge AC 1 ms 256 KB
50-random00 AC 1 ms 256 KB
50-random01 AC 1 ms 256 KB
50-random02 AC 1 ms 256 KB
50-random03 AC 1 ms 256 KB
50-random04 AC 1 ms 256 KB
50-random05 AC 1 ms 256 KB
50-random06 AC 1 ms 256 KB
50-random07 AC 1 ms 256 KB
50-random08 AC 1 ms 256 KB
50-random09 AC 1 ms 256 KB
50-random10 AC 1 ms 256 KB
50-random11 AC 1 ms 256 KB
50-random12 AC 1 ms 256 KB
50-random13 AC 1 ms 256 KB
50-random14 AC 1 ms 256 KB
50-random15 AC 1 ms 256 KB
50-random16 AC 1 ms 256 KB
50-random17 AC 1 ms 256 KB
50-random18 AC 1 ms 256 KB
50-random19 AC 1 ms 256 KB