5 条题解

  • 1
    @ 2025-2-16 12:47:23

    简单的离谱

    • 1
      @ 2025-1-25 12:17:58

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

      • 1
        @ 2025-1-20 20:15:04

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

        int main(){ long long a,b,s; cin>>a>>b; s=a*b; cout<<s; return 0; }

        • 1
          @ 2025-1-18 21:33:11

          #include<bits/stdc++.h> using namespace std; int A,B; long long C; int main(){ cin>>A>>B; C=A*B; cout<<C; return 0; }

          • 1
            @ 2025-1-17 17:42:44

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

            • 1

            信息

            ID
            37
            时间
            1000ms
            内存
            128MiB
            难度
            1
            标签
            (无)
            递交数
            83
            已通过
            72
            上传者