# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
650681 | 2022-10-14T16:27:31 Z | Tob | Fireworks (APIO16_fireworks) | C++14 | 0 ms | 0 KB |
#include<bits/stdc++.h> #define ll long long #define ff first #define ss second #define all(x) (x).begin(), (x).end() #define pb push_back #define eb emplace_back #define pii pair<int,int> #define count1(x) __builtin_popcount(x) #define endl '\n' using namespace std; const int inf = 1e9 + 7; ll t[inf]; int main(){ int n, m; cin >> n >> m; return 0; }