제출 #381448

#제출 시각아이디문제언어결과실행 시간메모리
381448AlashKZKošnja (COCI17_kosnja)C++17
50 / 50
137 ms620 KiB
#include <bits/stdc++.h> using namespace std; main () { int a; cin >> a; for(int i = 1;i <= a; ++i){ int b, c; cin>>b>>c; b = min(b, c); (b--); cout<<b * 2<<endl; } }

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

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