안녕하세요. 오늘은 2023에 대해서 알아볼 거예요.
https://www.acmicpc.net/problem/31090
N+1이 N%100으로 나누어떨어지는지만 확인하면 됩니다.
#include <iostream>
#define ll long long
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false); cin.tie(NULL);
ll T, x;
cin >> T;
while (T--)
{
cin >> x;
if ((x + 1) % (x % 100) == 0) cout << "Good\n";
else cout << "Bye\n";
}
}
감사합니다.