1 条题解

  • 0
    @ 2024-8-28 19:51:39

    本题限 c++ 数据

    #include <bits/stdc++.h>
    using namespace std;
    int main(){
        double ans = 0;
        int n,x;
        cin >> n;
        for(int i = 0 ;i < n ; i++){
            cin >> x;
            ans += (x-1)/70 +1;
        }
        printf("%.1f", ans *0.1);
    
        return 0;
    }
    
    • 1

    信息

    ID
    263
    时间
    1000ms
    内存
    256MiB
    难度
    7
    标签
    递交数
    32
    已通过
    9
    上传者