1 条题解

  • 1
    @ 2026-1-4 22:50:52
    #include<bits/stdc++.h>
    using namespace std;
    typedef long long ll;
    typedef pair<int, int> pii;
    #define MP(a,b) make_pair(a,b)
    int main() {
    	ios::sync_with_stdio ( false );
    	int a, b, c;
    	scanf ( "%d%d%d", &a, &b, &c );
    	printf ( "%d", int ( a * 0.2 + b * 0.3 + c * 0.5 ) );
    	return 0;
    }
    

    信息

    ID
    1673
    时间
    1000ms
    内存
    250MiB
    难度
    1
    标签
    递交数
    4
    已通过
    3
    上传者