mirror of
https://gitcode.com/Zengtudor/alg2025.git
synced 2025-08-21 18:52:07 +00:00
update
This commit is contained in:
parent
fa55095f9d
commit
93cdd285ff
28
src/8/12/P9754.cpp
Normal file
28
src/8/12/P9754.cpp
Normal file
@ -0,0 +1,28 @@
|
||||
#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++){
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user