# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
230159 | 2020-05-08T18:48:01 Z | EmmanuelAC | Bob (COCI14_bob) | C++14 | 75 ms | 4392 KB |
#include<bits/stdc++.h> using namespace std; #define ll long long ll mat[501][501], h[501][501]; int main(){ int n, m; scanf("%d %d",&n, &m); for(int i=1; i<=n; i++){ for(int j=1; j<=m; j++){ scanf("%lld", &mat[i][j]); if(mat[i][j] == mat[i-1][j]) h[i][j] = h[i-1][j] +1; else h[i][j] = 1; } } ll sol = 0; for(int i=1; i<=n; i++){ for(int j=1; j<=m; j++){ ll curr_min = h[i][j]; for(int k=0; k<j; k++){ if(mat[i][j -k] == mat[i][j]){ curr_min = min(h[i][j -k], curr_min); sol += curr_min; } else{ break; } } } } printf("%lld\n", sol); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 768 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 768 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 35 ms | 4344 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 51 ms | 4344 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 44 ms | 4344 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 44 ms | 4344 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 65 ms | 4392 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 74 ms | 4344 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 75 ms | 4344 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 74 ms | 4348 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |