Submission #132971


Source Code Expand

#include<stdio.h>
int main(void){
 
	char c[4][4];
	int i;
                  int j;
 
	for(i=0;i<4;i++){
		for(j=0;j<4;j++){

			scanf("%s",&c[i][j]);
			
		}
	}
 
 
	for(i=3;i>=0;i--){
		for(j=3;j>=0;j--){
 
			printf("%s ",c[i][j]);
 
 
		}
 
		printf("\n");
 
	}
 
	return 0;
 
}

Submission Info

Submission Time
Task B - 回転
User suuugiii
Language C (GCC 4.6.4)
Score 0
Code Size 314 Byte
Status RE
Exec Time 257 ms
Memory 828 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:20:4: warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘int’ [-Wformat]
./Main.c:11:9: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
RE × 30
Set Name Test Cases
All 00_sample_00.txt, 00_sample_01.txt, 01_all_dot.txt, 02_all_o.txt, 03_all_x.txt, rand_0.txt, rand_1.txt, rand_10.txt, rand_11.txt, rand_12.txt, rand_13.txt, rand_14.txt, rand_15.txt, rand_16.txt, rand_17.txt, rand_18.txt, rand_19.txt, rand_2.txt, rand_20.txt, rand_21.txt, rand_22.txt, rand_23.txt, rand_24.txt, rand_3.txt, rand_4.txt, rand_5.txt, rand_6.txt, rand_7.txt, rand_8.txt, rand_9.txt
Case Name Status Exec Time Memory
00_sample_00.txt RE 239 ms 796 KB
00_sample_01.txt RE 238 ms 680 KB
01_all_dot.txt RE 235 ms 796 KB
02_all_o.txt RE 235 ms 796 KB
03_all_x.txt RE 248 ms 800 KB
rand_0.txt RE 238 ms 800 KB
rand_1.txt RE 241 ms 684 KB
rand_10.txt RE 235 ms 732 KB
rand_11.txt RE 235 ms 796 KB
rand_12.txt RE 234 ms 792 KB
rand_13.txt RE 241 ms 784 KB
rand_14.txt RE 243 ms 788 KB
rand_15.txt RE 239 ms 796 KB
rand_16.txt RE 238 ms 792 KB
rand_17.txt RE 244 ms 800 KB
rand_18.txt RE 248 ms 796 KB
rand_19.txt RE 257 ms 796 KB
rand_2.txt RE 248 ms 648 KB
rand_20.txt RE 236 ms 800 KB
rand_21.txt RE 234 ms 828 KB
rand_22.txt RE 253 ms 796 KB
rand_23.txt RE 231 ms 792 KB
rand_24.txt RE 249 ms 796 KB
rand_3.txt RE 246 ms 732 KB
rand_4.txt RE 248 ms 796 KB
rand_5.txt RE 240 ms 796 KB
rand_6.txt RE 244 ms 796 KB
rand_7.txt RE 245 ms 740 KB
rand_8.txt RE 240 ms 796 KB
rand_9.txt RE 234 ms 792 KB