답안 #2290

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
2290 2013-07-21T01:26:38 Z aakseen 개미 (GA4_ant) C++
48 / 100
309 ms 3720 KB
#include <iostream>
using namespace std;
struct squ
{
    int a, b, c;
    long len;
};

void change(int &a, int &b)
{
    int k;
    if(a  > b)
    {
        k = a;
        a = b;
        b = k;
    }
}

int main()
{
    int num, i, j;
    cin >> num;
    squ *x = new squ[num];
    for (i = 0; i < num; i++)
    {
        cin >> x[i].a >> x[i].b >> x[i].c;
        change(x[i].a, x[i].b);
        change(x[i].a, x[i].c);
        change(x[i].b, x[i].c);
        x[i].len = ((x[i].a) + (x[i].b)) * ((x[i].a) + (x[i].b)) + ((x[i].c) * (x[i].c));
    }

    for (i = 0; i < num; i++)
        cout << x[i].len << endl;
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 257 ms 3720 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 268 ms 3720 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 284 ms 3720 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 301 ms 3720 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 285 ms 3720 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 309 ms 3720 KB Output isn't correct
2 Halted 0 ms 0 KB -