Sol的蓝桥杯模板奥里给0816

// #include<bits/stdc++.h>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<bitset>
#include<cstdlib>
#include<cmath>
#include<set>
#include<list>
#include<deque>
#include<map>
#include<queue>

#define pb push_back

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
typedef pair<double, double> pdd;


int T,n,m;
const double PI = acos(-1.0);
const double eps = 1e-6;
const int INF = 0x3f3f3f3f;
ll MAX = 0x3f3f3f3f3f3f3f3;
ll MIN = -MAX;
const int maxn = 100;
priority_queue<int> p_q;
priority_queue <int,vector<int>,less<int> > less_q;

ll gcd (ll a, ll b)
{
    if (b == 0)
        return a;
    return gcd (b, a % b);
}

int lowbit(int x){
    return x & -x ;
}


int main() {
    scanf("%d",&T);
    // ios::sync_with_stdio (0), cin.tie (0), cout.tie (0);
    while(T--) {
        cout <<"Hello World!\n";
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值