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