Submission #688315


Source Code Expand

#include <stdio.h>
int n; char c[50][51], d[50][51];
int main() {
	scanf("%d", &n);
    for (int i = 0; i < n; i++) scanf("%s", c[i]);
       for (int j = 0; j < n; j++) {
           for (int k = 0; k < n; k++) {
               d[j][k] = c[n - k - 1][j];
           }
       }
       for (int j = 0; j < n; j++) {
           for (int k = 0; k < n; k++) {
               printf("%c", d[j][k]);
           }
           printf("\n");
       }
    return 0;
}

Submission Info

Submission Time
Task B - 回転
User square1001
Language C++14 (GCC 5.4.1)
Score 100
Code Size 472 Byte
Status AC
Exec Time 2 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:4:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
                 ^
./Main.cpp:5:50: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     for (int i = 0; i < n; i++) scanf("%s", c[i]);
                                                  ^

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 11
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 AC 2 ms 128 KB
001.txt AC 2 ms 128 KB
002.txt AC 2 ms 128 KB
003.txt AC 2 ms 128 KB
004.txt AC 2 ms 128 KB
005.txt AC 2 ms 128 KB
006.txt AC 2 ms 128 KB
007.txt AC 2 ms 128 KB
008.txt AC 2 ms 128 KB
009.txt AC 2 ms 128 KB
010.txt AC 2 ms 128 KB