多次询问题目模版

多次询问题目模版

GoodNut Lv3

翔哥的模版

谢谢翔哥~

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<bits/stdc++.h>
using namespace std;
using i64=long long;
const int N=1e5+5;
void solve()
{

}
int main()
{
ios::sync_with_stdio(0);//优化
cin.tie(0);//优化
cout.tie(0);//优化
int _=1;
cin>> _;//查询次数
while(_--)
{
solve();//题目算法
}
return 0;
}
  • 标题: 多次询问题目模版
  • 作者: GoodNut
  • 创建于 : 2024-12-28 23:57:22
  • 更新于 : 2024-12-29 00:04:35
  • 链接: https://ddmaster2608.github.io/2024/12/28/多次询问题目模版/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论
目录
多次询问题目模版