9 条题解

  • 4
    @ 2023-8-24 10:36:04

    过辣!(脑残人士的欢呼)

        long long x,y,n;
        cin>>x>>y>>n;
        cout<<n-x-y;
    
    • 3
      @ 2023-10-4 17:14:00
      #include<bits/stdc++.h>
      using namespace std;int main(){cout<<6;}
      

      结束! 已AC

      • 2
        @ 2024-5-14 18:47:09
        #include <iostream>
        using namespace std;
        int main()
        {
            int x,y,n;
            cin >> x >> y >> n;
            cout << n-x-y;
            return 0;
        }
        
        • 1
          @ 2023-7-24 9:35:37

          #include <iostream> using namespace std; int main() { int x,y,n; cin >> x >> y >> n; cout << n - x - y; return 0; }

          • 0
            @ 2024-1-22 13:48:10

            #include <iostream> using namespace std; int main() { int x,y,n; cin >> x >> y >> n; cout << n - x - y; return 0;

            • 0
              @ 2023-11-5 12:31:46
              #include <bits/stdc++.h> 
              using namespace std;
              int main(){
                  cout<<6;
              }
              
              • 0
                @ 2023-9-5 21:07:11
                #include<bits/stdc++.h>
                using namespace std;
                int main()
                {
                    int a , b , c;
                    cin >> a >> b >> c;
                    c = c - a - b;
                    cout << c;
                    return 0;
                }
                

                so

                • 0
                  @ 2023-5-21 20:41:22

                  #include <iostream> using namespace std; int main() { int x,y,n; cin >> x >> y >> n; cout << n - x - y; return 0; }

                  😄

                  • 0
                    @ 2022-7-19 10:51:19
                    #include <iostream>
                    using namespace std;
                    int main()
                    {
                        int x,y,n;
                        cin >> x >> y >> n;
                        cout << n - x - y;
                        return 0;
                    }
                    
                    
                    • 1

                    信息

                    ID
                    594
                    时间
                    1000ms
                    内存
                    64MiB
                    难度
                    3
                    标签
                    递交数
                    614
                    已通过
                    307
                    上传者