제출 #473113

#제출 시각아이디문제언어결과실행 시간메모리
473113MamdouhNKošnja (COCI17_kosnja)C++17
50 / 50
123 ms588 KiB
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl "\n"
main()
{
    int n;
    cin>>n;
    while(n--)
    {
        int a,b;
        cin>>a>>b;
        cout<<(min(a,b)-1)*2<<endl;
    }
}

컴파일 시 표준 에러 (stderr) 메시지

kosnja.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...