Submission #1303086


Source Code Expand

#include <stdio.h>
int main(void)
{
  int h, w, i, j;
  char p[101][101], q[102][102];

  scanf("%d %d", &h, &w);
  for(i = 0; i < h; i++)
    scanf("%s", p[i]);

  for(i = 0; i < h+2; i++){
    for(j = 0; j < w+2; j++)
      q[i][j] = '#';
  }

  for(i = 1; i <= h; i++){
    for(j = 1; j <= w; j++)
      q[i][j] = p[i-1][j-1];
  }

  for(i = 0; i < h+2; i++){
    for(j = 0; j < w+2; j++){
      printf("%c", q[i][j]);
    }
    printf("\n");
  }
  return 0;
}

Submission Info

Submission Time
Task B - Picture Frame
User Lionking07
Language C (GCC 5.4.1)
Score 200
Code Size 492 Byte
Status AC
Exec Time 1 ms
Memory 128 KiB

Compile Error

./Main.c: In function ‘main’:
./Main.c:7:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &h, &w);
   ^
./Main.c:9:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%s", p[i]);
     ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 2
AC × 10
Set Name Test Cases
Sample 0_00.txt, 0_01.txt
All 0_00.txt, 0_01.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 128 KiB
0_01.txt AC 1 ms 128 KiB
1_00.txt AC 0 ms 128 KiB
1_01.txt AC 1 ms 128 KiB
1_02.txt AC 0 ms 128 KiB
1_03.txt AC 1 ms 128 KiB
1_04.txt AC 1 ms 128 KiB
1_05.txt AC 1 ms 128 KiB
1_06.txt AC 1 ms 128 KiB
1_07.txt AC 0 ms 128 KiB