# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
57471 | 2018-07-15T06:31:55 Z | dakara2006 | None (KOI16_room) | C++ | 3 ms | 444 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<3;i++) { for(j=0;j<2;j++) { printf("%d ",a[j][i]); if(a[j][i]!=0) { if(a[j][i]>=k) { hap+=a[j][i]/k; hap+=a[j][i]%k; } else hap++; } } printf("\n"); } printf("%d",hap); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 444 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |