728x90
https://softeer.ai/practice/7695
틀렸는데 피드백좀해주세요 ㅠ
소스코드
#include<iostream>
#include <vector>
#include <string>
#include <map>
using namespace std;
int main(int argc, char** argv)
{
int n;
cin >> n;
cin.ignore();
string maxStr;
int max = 0;
for (int i = 0; i < n; i++)
{
int a;
int b;
cin >> a >> b;
int result = abs(a - b);
if (max < result)
{
max = result;
maxStr = to_string(a)+" "+ to_string(b);
}
}
cout << maxStr;
return 0;
}
728x90
'코딩공부 > Softeer' 카테고리의 다른 글
[Softeer/C++]Level2 [한양대 HCPC 2023] X marks the Spot (0) | 2024.03.08 |
---|---|
[Softeer/C++]Level1 위험한 효도 (0) | 2024.03.08 |
[Softeer/C++]Level1 [한양대 HCPC 2023] 개표 (0) | 2024.03.07 |
[Softeer/C#]Level2 [21년 재직자 대회 예선] 전광판 (0) | 2023.06.01 |
[Softeer/C#]Level2 회의실예약 (0) | 2023.05.31 |