Skip to content

Instantly share code, notes, and snippets.

View bGlzdGRlcg's full-sized avatar
🍥
Galgaming

listder bGlzdGRlcg

🍥
Galgaming
View GitHub Profile
#include <fstream>
#define ui unsigned int
#define scuc static_cast<unsigned char>
#define scc static_cast<char>
#define b std::ios::binary
#define ifs std::ifstream
#define ofs std::ofstream
ui high(ui h, bool &t) {
@bGlzdGRlcg
bGlzdGRlcg / main.cpp
Last active May 31, 2025 06:44
ぽぴぱ
#include "popipa.h"
#include <iostream>
int main(int argc, char *argv[]) {
if (argc != 2) {
std::cout << "Usage: " << argv[0] << " -e/-d" << std::endl;
return 1;
}
std::string input;
std::cin >> input;
#include <cstdio>
#include <vector>
#define let const auto
#define var auto
#define fn auto
const int BASE64_DECODE_TABLE[128] = {
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
@bGlzdGRlcg
bGlzdGRlcg / main.cpp
Last active May 16, 2025 10:51
24 problem
#include <cstdint>
#include <cstdio>
#include <string>
#include <vector>
#define let const auto
#define fn auto
#define arr const std::vector<double>
#define str const std::string