1 条题解

  • 0
    @ 2023-1-22 10:54:13
    #include <bits/stdc++.h>
    using namespace std;
    int n,a[105],x,y;
    int main()
    {
        cin >> n;
        for(int i=1;i<=n;i++)
        {
            cin >> a[i];
        }
        cin >> x >> y;
        sort(a+1,a+n+1);
        for(int i=n;i>=1;i--)
        {
            if(i==n-x+1)
            {
                cout << a[i] << " ";
            }
            if(i==y)
            {
                cout << a[i] << " ";
            }
        }
    }
    
    • 1

    【入门】寻找指定大小的数

    信息

    ID
    1082
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    递交数
    23
    已通过
    19
    上传者