Advertisement

数字消失的现象(2024年陕西省第十二届全国大学生程序设计竞赛)

阅读量:
复制代码
 #include <bits/stdc++.h>

    
  
    
 #define endl '\n'
    
 using ll = long long;
    
 typedef unsigned long long ull;
    
 using namespace std;
    
  
    
 void GordenGhost();
    
  
    
 signed main() {
    
 #ifdef Gorden
    
     freopen("in.txt", "rt", stdin);
    
     freopen("out.txt", "wt", stdout);
    
 #endif
    
     ios::sync_with_stdio(false);
    
     cin.tie(nullptr), cout.tie(nullptr);
    
     int t;
    
     cin>>t;
    
     while (t--)
    
     GordenGhost

全部评论 (0)

还没有任何评论哟~