1 条题解

  • 0
    @ 2025-11-9 21:11:05

    没什么好说的 签到题 直接除一下再乘一下就好

    #include <bits/stdc++.h>
    using namespace std;
    using ll = long long;
    const int N = 2e5 + 10;
    const int MOD = 1e9 + 7;
    const int MOD9 = 998244353;
    const int MOD5 = 5;
    const ll inf = 2e10 + 7;
    ll q,d,v,t,n,k,mod,x,y,r,ans;
    string s;
    
    void solve()
    {
        cin>>v>>x>>y;
        cout<<(v/x*y)<<endl;
    }
    
    int main()
    {
    	ios::sync_with_stdio(false);
    	cin.tie(0);
    	cout.tie(0);
    	int tt;
    	tt = 1;
    	// cin >> tt;
    	while (tt--)
    		solve();
    	return 0;
    }
    

    超管留言:fw大王连代码块都不会用(¬‿¬)

    • 1

    信息

    ID
    1125
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    59
    已通过
    39
    上传者