118 条题解

  • -7
    @ 2024-8-6 19:38:17

    MXOI A1 题解

    前言

    第一次注册,正好看看这 markdown 好不好用。

    思路

    观察到需要让你输出 Hello, MXOJ!,输出即可。

    解题方法

    最简单的,使用 cout

    当然你也可以用别的方式,能 AC 即可。

    时间复杂度

    显而易见的,O(1)O(1)

    Code

    #include<stdio.h>
    #include<bits/stdc++.h>
    #define N 1000010
    #define MOD 998244353
    #define esp 1e-8
    #define INF 999999999999999999
    #define LL long long
    #define rep(i,a,b,g) for(LL i=a;i<=b;i+=g)
    #define rem(i,a,b,g) for(LL i=a;i>=b;i-=g)
    #define repn(i,a,b,g) for(LL i=a;i<b;i+=g)
    #define remn(i,a,b,g) for(LL i=a;i>b;i-=g)
    #define pll pair<LL,LL>
    #define mkp(x,y) make_pair(x,y)
    #define i128 __int128
    #define lowbit(x) ((x)&(-(x)))
    #define lc (u<<1)
    #define rc (u<<1|1)
    using namespace std;
    void read(i128 &x)
    {
        x=0;
        i128 f=1;
        char ch=getchar();
        while(ch<'0'||ch>'9')
        {
            if(ch=='-')f=-1;
            ch=getchar();
        }
    	while(ch>='0'&&ch<='9')
    	{
    		x=(x<<1)+(x<<3)+(ch^48);
    		ch=getchar();
    	}
    	x*=f;
    }
    void write(i128 x)
    {
        if(x<0)
        {
        	x=-x;
        	putchar('-');
        }
        if(x>9)write(x/10);
        putchar((x%10)^48);
    }
    int main()
    {
        cout<<"Hello, MXOJ!"<<endl;
    	return 0;
    }
    

信息

ID
1
时间
1000ms
内存
512MiB
难度
1
标签
(无)
递交数
2477
已通过
1210
上传者