Submission #808905
Source Code Expand
#include <iostream>
#include <vector>
#include <algorithm>
#include <utility>
#include <numeric>
#include <functional>
using namespace std;
int main() {
int N;
cin >> N ;
vector<int> L;
for (int i = 0; i <2*N; i++) {
int m;
cin >> m;
L.push_back(m);
}
sort(L.begin(), L.end());
int Guzai =0;
for(int i = 0; 2*i >2*N; i++){
Guzai += i;
}
cout << Guzai << endl;
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | A - BBQ Easy |
| User | yamariku |
| Language | C++14 (GCC 5.4.1) |
| Score | 0 |
| Code Size | 418 Byte |
| Status | WA |
| Exec Time | 5 ms |
| Memory | 256 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 0 / 200 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | sample-01.txt, sample-02.txt |
| All | sample-01.txt, sample-02.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 01-01.txt | WA | 5 ms | 256 KiB |
| 01-02.txt | WA | 4 ms | 256 KiB |
| 01-03.txt | WA | 4 ms | 256 KiB |
| 01-04.txt | WA | 4 ms | 256 KiB |
| 01-05.txt | WA | 4 ms | 256 KiB |
| 01-06.txt | WA | 4 ms | 256 KiB |
| 01-07.txt | WA | 4 ms | 256 KiB |
| 01-08.txt | WA | 4 ms | 256 KiB |
| sample-01.txt | WA | 4 ms | 256 KiB |
| sample-02.txt | WA | 4 ms | 256 KiB |