結果

問題 No.202 1円玉投げ
ユーザー togatogatogatoga
提出日時 2015-09-02 16:32:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 749 ms / 5,000 ms
コード長 638 bytes
コンパイル時間 1,500 ms
コンパイル使用メモリ 158,192 KB
実行使用メモリ 304,000 KB
最終ジャッジ日時 2024-12-22 10:00:21
合計ジャッジ時間 10,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
7,808 KB
testcase_01 AC 749 ms
304,000 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 46 ms
26,240 KB
testcase_06 AC 537 ms
209,792 KB
testcase_07 AC 597 ms
224,256 KB
testcase_08 AC 601 ms
225,664 KB
testcase_09 AC 339 ms
155,776 KB
testcase_10 AC 142 ms
79,232 KB
testcase_11 AC 277 ms
135,040 KB
testcase_12 AC 285 ms
137,344 KB
testcase_13 AC 157 ms
86,656 KB
testcase_14 AC 48 ms
30,080 KB
testcase_15 AC 325 ms
152,192 KB
testcase_16 AC 235 ms
9,984 KB
testcase_17 AC 217 ms
8,192 KB
testcase_18 AC 251 ms
8,192 KB
testcase_19 AC 318 ms
145,280 KB
testcase_20 AC 475 ms
197,248 KB
testcase_21 AC 305 ms
144,640 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 9 ms
7,424 KB
testcase_27 AC 10 ms
7,296 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 5 ms
5,248 KB
testcase_30 AC 10 ms
7,296 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 10 ms
7,296 KB
testcase_33 AC 5 ms
5,248 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 218 ms
9,216 KB
testcase_36 AC 219 ms
5,888 KB
testcase_37 AC 642 ms
232,960 KB
testcase_38 AC 222 ms
9,344 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
int N;
const int MAX_XY = 20040;
bool overlap(int y1, int x1, int y2, int x2){
  return (y1 - y2) * (y1 - y2) + (x1 - x2) * (x1 - x2) < 400;
}


bool on_board[MAX_XY][MAX_XY];

int res;
int main(){
  cin >> N;
  for (int i = 0; i < N; i++){
    int x,y;
    cin >> x >> y;
    bool ok = true;
    for (int Y = max(0, y - 20); Y <= y + 20; Y++){
      for (int X = max(0, x - 20); X <= x + 20; X++){
	if (on_board[Y][X]){
	  if (overlap(y, x, Y, X)){
	    ok = false;
	  }
	}
      }
    }
    if (ok){
      on_board[y][x] = true;
      res++;
    }
  }
  cout << res << endl;
  return 0;
}
0