fork download
  1. // CODE__ANTI__MOSS
  2. #include <bits/stdc++.h>
  3. #define buffspeed ios_base::sync_with_stdio(false);\
  4.   cin.tie(0);\
  5.   cout.tie(0)
  6. #define fopenn(tenfile) if(fopen(tenfile".inp","r")){\
  7.   freopen (tenfile".inp","r",stdin);\
  8.   freopen (tenfile".out","w",stdout);\
  9.   }
  10. #pragma GCC optimize("O3,unroll-loops,no-stack-protector")
  11. #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
  12. #define compile (1.0 clock() / CLOCKS_PER_SEC)
  13. #pragma GCC optimize("O3,unroll-loops")
  14. #pragma GCC target("sse4,avx2,fma")
  15. #define int long long
  16. #define __DEPTRAIVCL__ signed main()
  17. #define skibidi dopdop
  18. using namespace std;
  19. // 🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆
  20. // SPEED GOD MODE ACTIVATED 🔥🔥🔥
  21. #pragma GCC optimize("Ofast,inline,fast-math")
  22. #define speedgod int ___SPEEDGOD = clock();
  23. #define endspeedgod cout<<"Speed: "<<(1.0*(clock()-___SPEEDGOD)/CLOCKS_PER_SEC)<<"s\n";
  24. #define overclocked while(true) cout<<"🔥 CPU Overclocked 🔥\n";
  25. #define hyperthreading cout<<"[INFO] Hyperthreading Enabled ✅\n";
  26. #define cores cout<<"[INFO] Running on "<<thread::hardware_concurrency()<<" cores 🖥️\n";
  27. #define bootup cout<<"🔧 System Booting... Ready! ✅\n";
  28. // 💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀
  29. /*
  30. static struct FastInput {
  31.   static constexpr int BUF_SIZE = 1 << 20;
  32.   char buf[BUF_SIZE];
  33.   size_t chars_read = 0;
  34.   size_t buf_pos = 0;
  35.   FILE *in = stdin;
  36.   char cur = 0;
  37.  
  38.   inline char get_char() {
  39.   if (buf_pos >= chars_read) {
  40.   chars_read = fread(buf, 1, BUF_SIZE, in);
  41.   buf_pos = 0;
  42.   buf[0] = (chars_read == 0 ? -1 : buf[0]);
  43.   }
  44.   return cur = buf[buf_pos++];
  45.   }
  46.  
  47.   inline void tie(int) {}
  48.  
  49.   inline explicit operator bool() {
  50.   return cur != -1;
  51.   }
  52.  
  53.   inline static bool is_blank(char c) {
  54.   return c <= ' ';
  55.   }
  56.  
  57.   inline bool skip_blanks() {
  58.   while (is_blank(cur) && cur != -1) {
  59.   get_char();
  60.   }
  61.   return cur != -1;
  62.   }
  63.  
  64.   inline FastInput& operator>>(char& c) {
  65.   skip_blanks();
  66.   c = cur;
  67.   return *this;
  68.   }
  69.  
  70.   inline FastInput& operator>>(string& s) {
  71.   if (skip_blanks()) {
  72.   s.clear();
  73.   do {
  74.   s += cur;
  75.   } while (!is_blank(get_char()));
  76.   }
  77.   return *this;
  78.   }
  79.  
  80.   template <typename T>
  81.   inline FastInput& read_integer(T& n) {
  82.   n = 0;
  83.   if (skip_blanks()) {
  84.   int sign = +1;
  85.   if (cur == '-') {
  86.   sign = -1;
  87.   get_char();
  88.   }
  89.   do {
  90.   n += n + (n << 3) + cur - '0';
  91.   } while (!is_blank(get_char()));
  92.   n *= sign;
  93.   }
  94.   return *this;
  95.   }
  96.  
  97.   template <typename T>
  98.   inline typename enable_if<is_integral<T>::value, FastInput&>::type operator>>(T& n) {
  99.   return read_integer(n);
  100.   }
  101.  
  102.   #if !defined(_WIN32) | defined(_WIN64)
  103.   inline FastInput& operator>>(__int128& n) {
  104.   return read_integer(n);
  105.   }
  106.   #endif
  107.  
  108.   template <typename T>
  109.   inline typename enable_if<is_floating_point<T>::value, FastInput&>::type operator>>(T& n) {
  110.   n = 0;
  111.   if (skip_blanks()) {
  112.   string s;
  113.   (*this) >> s;
  114.   sscanf(s.c_str(), "%lf", &n);
  115.   }
  116.   return *this;
  117.   }
  118. } fast_input;
  119. #define cin fast_input
  120. */
  121. void skibidiinput(){
  122. //bootup;
  123. //hyperthreading;
  124. //cores;
  125. //cout << "Initializing Skibidi Sequence...\n";
  126. //for(int i=0;i<5;i++) cout<<"SKIBIDI TOILET LOADING "<<(i+1)*20<<"%\n";
  127. //cout << "✅ SKIBIDI SYSTEM ONLINE!\n";
  128. }
  129. void AC(){
  130. //cout<<"💻 Running Algorithm...\n";
  131. //speedgod;
  132. //cout<<"✨ Ultra Fast Computation Mode Activated!\n";
  133. //endspeedgod;
  134. }
  135.  
  136. void skibidioutput(){
  137. //overclocked;
  138. }
  139.  
  140. __DEPTRAIVCL__{
  141. //skibidi
  142. buffspeed;
  143. fopenn("");
  144. skibidiinput();
  145. AC();
  146. skibidioutput();
  147. //🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆🦆
  148. //quack quack
  149. }
  150.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty