1 条题解

  • 0
    @ 2022-10-29 10:44:57
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        ios::sync_with_stdio(false);
        cin.tie(0);
        int a, b, c;
        cin >> a >> b >> c;
        cout << (a + b) / c;
        return 0;
    }
    
    • 1

    信息

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