Submission #689701
Source Code Expand
#include<stdio.h>
int main(void)
{
int i, j, n;
char array[50][50];
scanf("%d", &n);
for(j=0;j<n;j++){
for(i=0;i<n;i++){
scanf("%s",&array[i][j]);
}
}
for(i=n-1;i>=0;i--){
for(j=0;j<n;j++){
printf("%s",&array[i][j]);
}
printf("\n");
}
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - 回転 |
| User | ic151225 |
| Language | C (Clang 3.8.0) |
| Score | 0 |
| Code Size | 288 Byte |
| Status | WA |
| Exec Time | 3 ms |
| Memory | 128 KiB |
Judge Result
| Set Name | All | ||
|---|---|---|---|
| Score / Max Score | 0 / 100 | ||
| Status |
|
| Set Name | Test Cases |
|---|---|
| All | 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 000.txt | WA | 2 ms | 128 KiB |
| 001.txt | WA | 3 ms | 128 KiB |
| 002.txt | WA | 2 ms | 128 KiB |
| 003.txt | WA | 3 ms | 128 KiB |
| 004.txt | WA | 2 ms | 128 KiB |
| 005.txt | WA | 3 ms | 128 KiB |
| 006.txt | WA | 2 ms | 128 KiB |
| 007.txt | WA | 3 ms | 128 KiB |
| 008.txt | WA | 2 ms | 128 KiB |
| 009.txt | WA | 3 ms | 128 KiB |
| 010.txt | WA | 2 ms | 128 KiB |