fork(1) download
  1.  
  2. import java.util.*;
  3. import java.lang.*;
  4. import java.io.*;
  5.  
  6. class Main
  7. {
  8. void answer(int count)
  9. {
  10. System.out.println(count);
  11. }
  12.  
  13. /**
  14. * @param H ホーム画面縦の区画数
  15. * @param W ホーム画面横の区画数
  16. * @param array[Y][X] ホーム画面の配置
  17. * @param S ウィジェットの縦サイズ
  18. * @param T ウィジェットの横サイズ
  19. */
  20. void resolve(int H, int W, int[][] array, int S, int T)
  21. {
  22. // your code goes here
  23. }
  24.  
  25. public static void main (String[] args) throws java.lang.Exception
  26. {
  27. Main instance = new Main();
  28.  
  29. String[] hw = in.readLine().split(" ");
  30. final int H = Integer.parseInt(hw[0]); // ホーム画面縦の区画数
  31. final int W = Integer.parseInt(hw[1]); // ホーム画面横の区画数
  32.  
  33. int[][] home = new int[H][W];
  34.  
  35. for (int y = 0; y < H; y++)
  36. {
  37. String line = in.readLine();
  38. for (int x = 0; x < W; x++)
  39. {
  40. home[y][x] = (int)(line.charAt(x) - '0');
  41. }
  42. }
  43.  
  44. final int N = Integer.parseInt(in.readLine());
  45.  
  46. for (int i = 0; i < N; i++)
  47. {
  48. String[] st = in.readLine().split(" ");
  49. int s = Integer.parseInt(st[0]); // ウィジェットの縦サイズ
  50. int t = Integer.parseInt(st[1]); // ウィジェットの横サイズ
  51.  
  52. instance.resolve(H, W, home, s, t);
  53. }
  54. }
  55. }
  56.  
Success #stdin #stdout 0.07s 380160KB
stdin
5 5
00000
00100
00010
10001
10000
3
2 2
1 1
3 2
stdout
Standard output is empty