data type에 따른 값의 크기와, cycle을 어떻게 처리할지에 대해 고민 할 수 있는 문제 #include #include #include #include #include using namespace std; #include int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */ unsigned int N,S,P,Q; cin >> N; cin >> S >> P >> Q; unsigned int bigNumber = pow(2,31); unsigned int a0 = S; unsigned long long a = a0; unsigned long long a1 = a0; unsigned int i = ..