5 条题解

  • 1
    @ 2024-2-22 18:10:19
    #include <iostream>
    using namespace std;
    int main()
    {
        int x, y, sum = 5;
        cin >> x >> y;
        sum *= y / x;
        cout << sum;
        return 0;
    }
    
    
    
    • 1
      @ 2022-9-1 17:28:07
      cout<<y/x*5;
      
      • 0
        @ 2022-12-23 16:25:41
        #include <bits/stdc++.h>
        using namespace std;
        int main()
        {
            int x, y;
            cin >> x >> y;
            cout << y / x * 5;
            return 0;
        }
        
        • 0
          @ 2022-4-2 10:59:00

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

          • 0
            @ 2021-9-16 20:35:19

            #include <iostream> using namespace std; int main() { int x , y ; cin >> x >> y ; int cal = y / x ; cout << cal * 5 << endl ; return 0 ; }

            • 1

            信息

            ID
            414
            时间
            1000ms
            内存
            16MiB
            难度
            6
            标签
            递交数
            36885
            已通过
            12658
            上传者