blob: 778cc8682ee4a07c22d2b466a518ad8fabd0c81c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <iostream>
#include <tuple>
#include <vector>
using ull = unsigned long long;
int main() {
int n;
std::cin >> n;
while (n--) {
ull x, y;
std::cin >> y >> x;
auto area = y * y;
auto perimeter = y + y + 1;
auto max = area + perimeter;
}
}
|