# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
251016 | 79brue | Poi (IOI09_poi) | C++14 | 411 ms | 12152 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, p, k;
bool solved[2002][2002];
int points[2002];
int score[2002];
int cnt[2002];
int ans;
int main(){
scanf("%d %d %d", &n, &p, &k);
for(int i=1; i<=n; i++){
for(int j=1; j<=p; j++){
scanf("%d", &solved[i][j]);
if(!solved[i][j]) points[j]++;
else cnt[i]++;
}
}
for(int i=1; i<=n; i++){
for(int j=1; j<=p; j++){
if(solved[i][j]) score[i] += points[j];
}
}
// for(int i=1; i<=p; i++)
// printf("%d problem point: %d\n", i, points[i]);
for(int i=1; i<=n; i++){
// printf("%d\'s score: %d\n", i, score[i]);
if(score[k] < score[i]) ans++;
else if(score[k] == score[i]){
if(cnt[k] < cnt[i]) ans++;
else if(cnt[k] == cnt[i] && i<k) ans++;
}
}
printf("%d %d", score[k], ans+1);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |