118 条题解

  • 5
    @ 2024-10-6 20:26:48

    MX.[A1]题解

    思路

    基础的字符串输入输出,特来为萌新讲解一下。

    cout是iostream库的输出。 一般我们写:

    cout<<"所要输出的代码"

    运行结果便输出了所需要输出的代码。

    那么在本题中,应该是:

    cout<<"Hello, MXOJ!";

    如果你选择使用printf那么在本题中,应该是

    printf("Hello,MXOJ!");

    核心部分搞定,上代码

    #include<bits/stdc++.h>
    using namespace std;
    
    int main()
    {
        cout<<"Hello, MXOJ!";
    }
    
    
  • 1
    @ 2024-10-7 14:41:16

    Hello, MXOJ!

    思路

    直接输出

    解题方法

    直接输出

    复杂度

    时间复杂度:

    空间复杂度:

    Code

    #include<bits/stdc++.h>//万能头,比较实用
    using namespace std;
    
    int main(){
    	ios::sync_with_stdio(0);//加速,可加可不加
    	cin.tie(0),cout.tie(0);
    	cout<<"Hello, MXOJ!";
    	return 0;
    }
    • 0
      @ 2024-10-21 20:15:18

      【题解】你好,萌熊OJ

      思路

      本题是一道签到题OI入门题,主要考察对语言框架和标准输入输出的运用(强烈建议使用C++语言,因为大多数OI系列比赛都使用c++作为主要编程语言当然也有Pascal和C)。

      解题方法

      直接使用模板即可,下面给出c++模板实例

      复杂度

      时间复杂度:

      O(1)O(1)

      空间复杂度:

      O(1)O(1)

      Code

      #include<bits/stdc++.h>
      using namespace std;
      int main(){
          cout<<"Hello, MXOJ!"<<endl;
          return 0;
      }
      
      • 0
        @ 2024-10-21 12:34:01

        标题

        Hello,MXOJ!\color{Tan}Hello, MXOJ!

        思路

        运用输出流直接输出Hello, MXOJ!

        cout << "Hello, MXOJ!";
        

        注意中间有空格

        也可以用printf

        printf("Hello, MXOJ!");
        

        完整 Code

        #include <bits/stdc++.h>
        
        using namespace std;
        
        signed main()
        {
            cout<<"Hello, MXOJ!";
            return 0;
        }
        
        • 0
          @ 2024-10-20 12:15:43

          Hello, MXOJ!

          我第一次用MXoj耶!!!!

          思路

          用C++的cout输出Hello, MXOJ!即可。

          复杂度

          时间复杂度:

          O(1)O(1)

          空间复杂度:

          O(1)O(1)

          Code

          #include<bits/stdc++.h>
          using namespace std;
          int main()
          {
              cout<<"Hello, MXOJ!"<<endl;
              return 0;
          }
          
          • 0
            @ 2024-10-9 20:06:39

            Hello, MXOJ!

            解题方法

            输出:

            cout<<字符串

            字符串:

            "aaa随便写"

            复杂度

            时间复杂度:

            O(1)O(1)

            空间复杂度:

            O(1)O(1)

            Code

            #include <bits/stdc++.h>
            using namespace std;
            int main(){
            	cout<<"Hello, MXOJ!";
            	return 0;
            }
            • 0
              @ 2024-10-4 17:21:19

              解题方法

              使用 std::coutprintf 来输出字符串。

              复杂度

              时间复杂度:

              O(1)O(1)

              空间复杂度:

              O(1)O(1)

              Code

              #include<iostream>
              int main(){
                  std::cout<<"Hello, MXOJ!";
                  return 0;
              }
              
              • 0
                @ 2024-10-3 11:29:28

                思路

                直接输出 Hello, MXOJ! 即可

                时间复杂度:

                O(1)O(1)

                空间复杂度:

                O(1)O(1)

                Code

                #include<bits/stdc++.h>
                #define int long long
                using namespace std;
                signed main()
                {
                    cout<<"Hello, MXOJ!";
                    return 0;
                }
                
                • -1
                  @ 2024-10-3 12:35:30

                  题解

                  思路

                  直接输出

                  解题方法

                  复杂度

                  时间复杂度:

                  O(1)O(1)

                  空间复杂度:

                  O(1)O(1)

                  Code

                  #include<bits/stdc++.h>
                  using namespace std;
                  int mian()
                  {
                      cout<<"Hello, MXOJ";
                      return  0;
                  }
                  
                  • -1
                    @ 2024-9-30 18:34:30

                    Code

                    print("Hello, MXOJ!")
                    • -1
                      @ 2024-9-29 19:04:29

                      Hello, MXOJ!

                      思路

                      一开始我想直接cout就OKOK了,代码如下:

                      #include<iostream>
                      using namespace std;
                      int main(){
                          cout<<"Hello,MXOJ!";
                          return 0;
                      }
                      

                      然后我成功地,成功地WA了。。。 大家不要像我一样忘了中间有个空格!!!

                      复杂度

                      时间复杂度:

                      O(1)O(1)

                      空间复杂度:

                      O(1)O(1)

                      Accepted Code

                      #include<iostream>
                      using namespace std;
                      int main(){
                          cout<<"Hello, MXOJ!";
                          return 0;
                      }
                      
                      • -1
                        @ 2024-9-28 16:49:09

                        A1 你好,梦熊 OJ! 题解

                        思路

                        直接输出

                        时间复杂度 O(1)O(1)

                        空间复杂度 O(1)O(1)

                        Code

                        #include <bits/stdc++.h>
                        using namespace std;
                        
                        
                        int main() {
                            puts("Hello, MXOJ!");
                            return 0;
                        }
                        
                        • -1
                          @ 2024-9-27 18:27:59

                          标题

                          思路

                          直接输出

                          解题方法

                          输出

                          复杂度

                          时间复杂度:

                          O(1)O(1)

                          空间复杂度:

                          O(1)O(1)

                          Code

                          #include<bits/stdc++.h>
                          using namespace std;
                          int main(){
                          	cout<<"Hello, MXOJ!";
                          	return 0;//好习惯 
                          }
                          
                          • -2
                            @ 2024-10-17 9:28:11

                            标题

                            思路

                            解题方法

                            复杂度

                            时间复杂度:

                            添加时间复杂度, 示例: O(n)O(n)

                            空间复杂度:

                            添加空间复杂度, 示例: O(n)O(n)

                            Code

                            • -2
                              @ 2024-10-4 8:52:31

                              #include<bits/stdc++.h> using namespace std; int main() { cout<<"Hello, MXOJ!"; return 0; }

                              • -2
                                @ 2024-10-3 15:12:42

                                直接输出即可。代码如下:

                                #include<bits/stdc++.h>
                                using namespace std; 
                                int main(){
                                    cout<<"Hello, MXOJ!"<<endl; 
                                return 0;	
                                }
                                
                                • -2
                                  @ 2024-10-1 10:31:44

                                  Code

                                  #include<bits/stdc++.h>
                                  using namespace std;
                                  int mian()
                                  {
                                      cout<<"Hello, MXOJ";
                                      return  0;
                                  }
                                  
                                  
                                  • -2
                                    @ 2024-9-28 14:42:35

                                    标题

                                    思路

                                    直接输出

                                    解题方法

                                    复杂度

                                    时间复杂度:

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

                                    空间复杂度:

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

                                    Code

                                    #include <bits/stdc++.h>
                                    using namespace std;
                                    #define int long long
                                    signed main(){
                                    	cout<<"Hello, MXOJ!";
                                    	return 0;
                                    }
                                    
                                    
                                    • -5
                                      @ 2024-9-21 18:28:52

                                      直接输出就行了

                                      Code

                                          #include<bits/stdc++.h>
                                          using namespace std;
                                          int main(){
                                          	cout<<"Hello, MXOJ!";
                                          	return 0;
                                          }
                                      
                                      • -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
                                        上传者