| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1287345 | bilgun | Stove (JOI18_stove) | C++20 | 0 ms | 332 KiB |
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n, k; cin >> n >> k;
vector<int> col(n);
for( int i = 0; i < n; i++){
cin >> col[i];
}
if( n == k){
cout << n << endl;
return 0;
}
return 0;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
