제출 #381433

#제출 시각아이디문제언어결과실행 시간메모리
381433AlashKZKošnja (COCI17_kosnja)C++17
0 / 50
137 ms492 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); while (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...