#include <cstdio>
#include <algorithm>
using namespace std;
int main() {
long long a, b, c;
int t;
scanf("%d", &t);
for (int i = 0; i < t; i++) {
scanf("%lld %lld %lld", &a, &b, &c);
printf("%lld\n",c * c + (a + b) * (a + b));
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
884 KB |
Output is correct |
2 |
Correct |
51 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
47 ms |
884 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
61 ms |
884 KB |
Output is correct |
2 |
Incorrect |
61 ms |
884 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |