# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1172528 | versesrev | Arranging Shoes (IOI19_shoes) | C++20 | 0 ms | 0 KiB |
// 22:03
#include <vector>
long long count_swap(std::vector<int> ss) {
long long n = ss.size();
return n * (n - 1) / 2;
}
# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1172528 | versesrev | Arranging Shoes (IOI19_shoes) | C++20 | 0 ms | 0 KiB |