/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 12ms 684.0 KiB
#3 Accepted 17ms 756.0 KiB
#4 Accepted 16ms 676.0 KiB

Code

/*
 *Copyright (c) Swadheen Islam Robi (SIR01)
 *Created on Tue Jan 06 2026 9:12:55 PM
 */
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2 * (acos(0.0))
#define yes cout << "YES\n"
#define no cout << "NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a, b) (a * b) / (__gcd<ll>(a, b))
#define mod 1000000007
#define srt(v) sort(v.begin(), v.end())
#define rsrt(v) sort(v.rbegin(), v.rend())
#define print(vec)        \
    for (auto e : vec)    \
        cout << e << " "; \
    cout << endl
#define ALLAHU_AKBAR             \
    ios::sync_with_stdio(false); \
    cin.tie(nullptr);

bool chk(ll N)
{

    ll D = 1 + 8 * N;
    ll r = sqrt(D);
    if (r * r != D)
        return false;
    return (r - 1) % 2 == 0;
}

void sir()
{
    ll k;
    cin >> k;

    k++;

    if (chk(k))
        cout << "b\n";
    else
        cout << "a\n";
}

int main()
{
    ALLAHU_AKBAR

    ll t = 1;
    cin >> t;
    while (t--)
    {
        sir();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1223 C. Infinity Sequence
Contest
Happy New Year 2026
Language
C++17 (G++ 13.2.0)
Submit At
2026-01-06 15:39:08
Judged At
2026-01-06 15:39:08
Judged By
Score
100
Total Time
17ms
Peak Memory
756.0 KiB