2 条题解

  • -1
    @ 2026-1-17 14:41:09
    #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);
    	cin.tie(0);
    	int a,b,c;
    	cin>>a>>b>>c;
    	cout<<max(max(a,b),c);
    	return 0;
    }
    

    信息

    ID
    6906
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    递交数
    32
    已通过
    21
    上传者