原题: https://www.patest.cn/contests/pat-b-practise/1059 思路: 参赛者id是数组下标, 数组值是参赛者排名位置(从1开始), 每次判断0不存在, -1领过奖了, 其它就是位置序号. 实现: #include <stdio.h> #define LEN 10010 int isPrime (int n); // -1 领过奖了 0不存在 其它就是位置序号 int main (void) { int pnum; int snum; int st…