# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
57464 | 2018-07-15T06:10:55 Z | dakara2006 | 방 배정 (KOI16_room) | C++ | 3 ms | 732 KB |
#include <bits/stdc++.h> using namespace std; int main() { static int n,k,s,g,a[2][5],hap=0,i,j; scanf("%d %d",&n,&k); for(i=0;i<n;i++) { scanf("%d %d",&s,&g); if(g==1 || g==2) a[0][0]++; else if(g==3 || g==4) a[s][1]++; else if(g==5 || g==6) a[s][2]++; } for(i=0;i<2;i++) { for(j=0;j<3;j++) { if(a[i][j]!=0) { if(a[i][j]>=k) { hap+=a[i][j]/k; hap+=a[i][j]%k; } else hap+=a[i][j]; } } } printf("%d",hap); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 248 KB | Output is correct |
2 | Correct | 3 ms | 488 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 556 KB | Output is correct |
2 | Correct | 2 ms | 556 KB | Output is correct |
3 | Correct | 3 ms | 556 KB | Output is correct |
4 | Correct | 3 ms | 556 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 732 KB | Output is correct |
2 | Incorrect | 3 ms | 732 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 248 KB | Output is correct |
2 | Correct | 3 ms | 488 KB | Output is correct |
3 | Correct | 3 ms | 556 KB | Output is correct |
4 | Correct | 2 ms | 556 KB | Output is correct |
5 | Correct | 3 ms | 556 KB | Output is correct |
6 | Correct | 3 ms | 556 KB | Output is correct |
7 | Correct | 2 ms | 732 KB | Output is correct |
8 | Incorrect | 3 ms | 732 KB | Output isn't correct |
9 | Halted | 0 ms | 0 KB | - |