fork(2) download
  1. #include <stdio.h>
  2.  
  3. void answer(int count) {
  4. printf("%d\n", count);
  5. }
  6.  
  7. #define Y_SIZE (300)
  8. #define X_SIZE (300)
  9.  
  10. int H; // ホーム画面縦の区画数
  11. int W; // ホーム画面横の区画数
  12. int array[Y_SIZE][X_SIZE]; // ホーム画面の配置
  13.  
  14. void resolve(S, T)
  15. int S; // ウィジェットの縦サイズ
  16. int T; // ウィジェットの横サイズ
  17. {
  18. // your code goes here
  19. }
  20.  
  21. int main(void) {
  22. char str[305];
  23. int N, s, t;
  24. int x, y, i;
  25.  
  26. scanf("%d %d", &H, &W);
  27.  
  28. for (y = 0; y < H; y++) {
  29. scanf("%s", str);
  30. for (x = 0; x < W; x++) {
  31. array[y][x] = (int)(str[x] - '0');
  32. }
  33. }
  34.  
  35. scanf("%d", &N);
  36.  
  37. for (i = 0; i < N; i++) {
  38. scanf("%d %d", &s, &t);
  39.  
  40. resolve(s, t);
  41. }
  42.  
  43. return 0;
  44. }
  45.  
Success #stdin #stdout 0s 2596KB
stdin
5 5
00000
00100
00010
10001
10000
3
2 2
1 1
3 2
stdout
Standard output is empty