https://www.acmicpc.net/problem/2475
풀이: 고유번호의 각 자릿수를 제곱한 값을 더한 후 10으로 나눈 나머지를 출력한다.
코드: 사용언어 : c++
1 2 3 4 5 6 7 8 9 10 #include <iostream>using namespace std; int x, i, s = 0; int main() { for (i = 0; i < 5; i++) { cin >> x; s += x * x; } cout << s % 10 << endl; }
https://www.acmicpc.net/problem/2959
풀이: 거북이가 만들 수 있는 가장 큰 직사각형의 면적을 출력한다
코드: 사용언어 : c++
1 2 3 4 5 6 7 8 9 #include <iostream>#include <algorithm>using namespace std; int a[4], i = 4; int main() { while (i--) cin >> a[i]; sort(a, a + 4); cout << a[0] * a[2] << endl; }
https://www.acmicpc.net/problem/5523
풀이: 각 경기마다 a가 이겼다면 a++ 를
b가 이겼다면 b++를 해준다.
모든 경기가 끝난 후 a와 b값을 출력해준다.
코드: 사용언어 : c++
1 2 3 4 5 6 7 8 9 10 11 12 #include <iostream>using namespace std; int n, a = 0, b = 0, x, y; int main() { cin >> n; while (n--) { cin >> x >> y; if (x > y) a++; if (x < y) b++; } cout << a << " " << b << endl; }