Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
36401 毛奕皓MAOYIHAO 谁考了第k名 C++ 编译错误 0 MS 0 KB 315 2024-01-13 13:19:33

Tests(0/0):


#include<algorithm> using namespace std; struct node{ int id; float score; }s[100]; bool cmp(node a,node b){ return a.score>b.score; } int main() { int n,k; cin>>n>>k; for(int i=1;i<=n;i++){ cin>>s[i].id>>s[i].score; } sort(s+1,s+1+n,cmp); cout<<s[k].id<<" "<<s[k].score; return 0; }


测评信息: