Submission #1115759

#TimeUsernameProblemLanguageResultExecution timeMemory
1115759gustavo_dDuathlon (APIO18_duathlon)C++17
0 / 100
24 ms7248 KiB
// https://oj.uz/problem/view/APIO18_duathlon > p520 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int MAXN = 1e5; vector<int> adj[MAXN]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n, m; cin >> n >> m; for (int i=0; i<m; i++) { int u, v; cin >> u >> v; u--; v--; adj[u].push_back(v); adj[v].push_back(u); } cout << (ll)(n) * (ll)(n - 1) * (ll)(n - 2) / 3LL << '\n'; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...