Compare commits

..

No commits in common. "93cdd285ff35900a28a1244db421edc0d3f712a7" and "5af9efe1eb020ac92b7d7af71c5a1fba77f8fa8c" have entirely different histories.

3 changed files with 1 additions and 32 deletions

View File

@ -1,3 +0,0 @@
int main(){
}

View File

@ -1,28 +0,0 @@
#include <cstdint>
#include <iostream>
#include <map>
#include <string>
using ll = int64_t;
ll n;
std::map<std::string, ll> m = {
};
int main(){
std::cin>>n;
for(ll i=1;i<=n;i++){
ll op;
std::cin>>op;
if(op==1){
std::string s;
std::cin>>s;
ll k;
std::cin>>k;
for(ll j=1;j<=k;j++){
}
}
}
}