118 条题解

  • -6
    @ 2024-9-24 16:15:39

    你好,梦熊 OJ!

    思路

    直接输出 Hello, MXOJ!

    解题方法

    输出 Hello, MXOJ!

    复杂度

    时间复杂度:

    添加时间复杂度: O(1)O(1)

    空间复杂度:

    添加空间复杂度: O(1)O(1)

    Code

    // Author : hejinming2012
    #include <bits/stdc++.h>
    #define int long long
    #define endl '\n'
    #define dbg(x) cout << #x " = " << (x) << endl
    #define quickio ios::sync_with_stdio(false);
    #define quickin cin.tie(0);
    #define quickout cout.tie(0);
    
    using namespace std;
    inline int read() {
        int now = 0, nev = 1; char c = getchar();
        while(c < '0' || c > '9') { if(c == '-') nev = -1; c = getchar(); }
        while(c >= '0' && c <= '9') { now = (now << 1) + (now << 3) + (c & 15); c = getchar(); }
        return now * nev;
    }
    void write(int x) {
        if(x < 0) putchar('-'), x = -x;
        if(x > 9) write(x / 10);
        putchar(x % 10 + '0');
    }
    
    signed main() {
        quickio
        quickin
        quickout
    	puts("Hello, MXOJ!");
        return 0;
    }
    

    信息

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