102 条题解

  • -2
    @ 2022-11-5 15:18:01

    xda

    • -2
      @ 2022-11-5 15:17:59

      xda

      • -2
        @ 2022-11-5 15:17:57

        xda

        • -2
          @ 2022-11-5 15:17:50

          xda

          • -2
            @ 2022-11-5 15:17:34

            aq

            • -2
              @ 2022-11-5 15:17:33

              aqw

              • -2
                @ 2022-11-5 15:17:31

                aqw

                • -2
                  @ 2022-11-5 15:17:29

                  aewq

                  • -2
                    @ 2022-11-5 15:17:28

                    a

                    • -2
                      @ 2022-11-5 15:17:14

                      a

                      • -2
                        @ 2022-11-5 15:14:49

                        a

                        • -2
                          @ 2022-11-5 15:14:46

                          qw q

                          • -2
                            @ 2022-11-5 11:16:18
                            #include<iostream>
                            using namespace std;
                            int main(){
                            	int a,b;
                            	cin>>a>>b;
                            	cout<<a+b<<endl;
                            	return 0;
                            }
                            
                            • -2
                              @ 2022-11-5 11:07:42
                              • -2
                                @ 2022-10-29 9:27:31

                                #include

                                using namespace std;

                                int main(){

                                int a,b;
                                
                                cin>>a>>b;
                                
                                cout<<a+b;
                                
                                return 0;
                                

                                }

                                • -2
                                  @ 2022-10-22 10:41:41

                                  `#include<bits/stdc++.h> using namespace std;

                                  char a[1000][1000]; int n,tx=2,ty=0;

                                  void build(int n,int x,int y){ if(n==1){ a[x][y]='/'; a[x-1][y+1]='/'; a[x][y+1]=''; a[x][y+2]=''; a[x][y+3]='\'; a[x-1][y+2]='\'; } else{ int t=1; for(int i=1;i<=n;i++){ t*=2; } build(n-1,x,y); build(n-1,x,y+t); build(n-1,x-t/2,y+t/2); } }

                                  int main(){ cin>>n; for(int i=2;i<=n;i++){ tx*=2; } tx-=1; build(n,tx,ty); for(int i=0;i<=tx;i++){ for(int j=0;j<=(tx+1)*2-1;j++){ cout<<a[i][j]; } cout<<endl; } return 0; }`

                                  • -2
                                    @ 2022-9-17 10:16:42
                                    #include<bits/stdc++.h> 
                                    using namespace std;
                                    int main(){
                                    	int m,s;
                                    	cin>>m>>s;
                                    	cout<<m+s;
                                    	return 0;
                                    }
                                    
                                    • -3
                                      @ 2023-11-26 11:21:40

                                      dddd

                                      #include <iostream>
                                      #include <algorithm>
                                      using namespace std;
                                      int a[1000]={0},b[1000]={0};
                                      void init(string s,int a[]){
                                          a[0]=s.length();
                                          for(int i=1;i<=a[0];i++){
                                              a[i]=s[a[0]-i]-'0';
                                          }
                                      }
                                      void add(int a[],int b[]){
                                          a[0]=max(a[0],b[0]);
                                          for(int i=1;i<=a[0];i++){
                                              a[i]+=b[i];
                                          }
                                          for(int i=1;i<=a[0];i++){
                                              if(a[i]/10) a[i+1]+=a[i]/10;
                                              a[i]%=10;
                                          }
                                          if(a[a[0]+1]) a[0]++;
                                      }
                                      void print(int a[]){
                                          for(int i=a[0];i>=1;i--){
                                              cout<<a[i];
                                          }
                                          cout<<endl;
                                      }
                                      int main(){
                                          string sa,sb;
                                          cin>>sa;
                                      cin>>sb;
                                          init(sa,a);
                                          init(sb,b);
                                          add(a,b);
                                          print(a);
                                        return 0;
                                      }
                                      
                                      • -3
                                        @ 2023-11-21 19:39:16

                                        #include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; }

                                        • -3
                                          @ 2023-10-25 19:29:28

                                          i,o=map(int,input().split())

                                          print(i+o)

                                          提交用python 3

                                          信息

                                          ID
                                          1
                                          时间
                                          1000ms
                                          内存
                                          256MiB
                                          难度
                                          10
                                          标签
                                          递交数
                                          1073
                                          已通过
                                          365
                                          上传者