add aloha/2025hcpc
This commit is contained in:
25
storage/aloha/cpp/2025hcpc-div1-A.cpp
Normal file
25
storage/aloha/cpp/2025hcpc-div1-A.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#include <iostream>
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <vector>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
size_t n;
|
||||
|
||||
cin >> n;
|
||||
|
||||
vector<uint64_t> tastes;
|
||||
uint64_t temp;
|
||||
for (size_t i = 0; i < n; i++) {
|
||||
cin >> temp;
|
||||
tastes.push_back(temp);
|
||||
}
|
||||
|
||||
// pop_front
|
||||
// pop_back
|
||||
// push_back
|
||||
// push_front
|
||||
}
|
||||
Reference in New Issue
Block a user