Submission #9761

# Submission time Handle Problem Language Result Execution time Memory
9761 2014-09-28T08:44:40 Z maniac Solve another chuck (kriii2_S) C++
0 / 4
0 ms 1168 KB
#include <cstdio>
#include <cmath>
#include <algorithm>
using namespace std;
#define LL long long
int r,c;
LL a[101][101],re;
void solve(){
	scanf("%d %d",&r,&c);
	for(int i = 0; i< r; i++){
		for(int j = 0; j < c; j++){
			scanf("%lld",&a[i][j]);
			re+= abs(a[i][j]);
		}
	}
	printf("%lld 1\n",re);
	puts("rotC 2 1");
}

int main(void){
	
	solve();
	return 0;
}
# Verdict Execution time Memory Grader output
1 Partially correct 0 ms 1168 KB Output is partially correct
2 Partially correct 0 ms 1168 KB Output is partially correct
3 Partially correct 0 ms 1168 KB Output is partially correct
4 Incorrect 0 ms 1168 KB Output isn't correct
5 Halted 0 ms 0 KB -