結果

問題 No.202 1円玉投げ
ユーザー roiti46roiti46
提出日時 2015-05-04 18:26:36
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 653 bytes
コンパイル時間 2,699 ms
コンパイル使用メモリ 76,368 KB
実行使用メモリ 201,568 KB
最終ジャッジ日時 2024-12-22 08:28:33
合計ジャッジ時間 80,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 3,610 ms
191,596 KB
testcase_02 AC 96 ms
82,048 KB
testcase_03 AC 96 ms
82,260 KB
testcase_04 AC 98 ms
176,764 KB
testcase_05 AC 236 ms
82,100 KB
testcase_06 AC 2,780 ms
89,592 KB
testcase_07 AC 3,482 ms
91,220 KB
testcase_08 AC 3,620 ms
92,880 KB
testcase_09 AC 1,303 ms
87,628 KB
testcase_10 AC 463 ms
84,696 KB
testcase_11 AC 1,008 ms
86,740 KB
testcase_12 AC 1,048 ms
87,120 KB
testcase_13 AC 500 ms
85,108 KB
testcase_14 AC 260 ms
82,732 KB
testcase_15 AC 1,422 ms
88,272 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,155 ms
87,096 KB
testcase_20 AC 2,292 ms
89,560 KB
testcase_21 AC 1,095 ms
87,332 KB
testcase_22 AC 171 ms
80,512 KB
testcase_23 AC 155 ms
80,512 KB
testcase_24 AC 136 ms
80,128 KB
testcase_25 AC 126 ms
79,872 KB
testcase_26 AC 170 ms
80,640 KB
testcase_27 AC 161 ms
80,256 KB
testcase_28 AC 129 ms
79,872 KB
testcase_29 AC 133 ms
79,872 KB
testcase_30 AC 123 ms
80,256 KB
testcase_31 AC 124 ms
79,872 KB
testcase_32 AC 149 ms
80,896 KB
testcase_33 AC 174 ms
81,024 KB
testcase_34 AC 157 ms
80,896 KB
testcase_35 TLE -
testcase_36 AC 4,961 ms
100,352 KB
testcase_37 AC 4,360 ms
91,260 KB
testcase_38 TLE -
testcase_39 AC 126 ms
80,000 KB
testcase_40 AC 113 ms
179,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dist(ax, ay, bx, by):
    return (ax - bx) ** 2 + (ay - by) ** 2
    
N = int(raw_input())
X = [[] for i in xrange(20021)]
Y = [[] for i in xrange(20021)]
ans = 0
for loop in xrange(N):
    x, y = map(int, raw_input().split())
    xcand, ycand = set([]), set([])
    for i in xrange(max(0, x - 20), x + 20):
        for xy in X[i]:
            xcand.add(xy)
    for i in xrange(max(0, y - 20), y + 20):
        for xy in Y[i]:
            ycand.add(xy)
    cand = xcand & ycand
    for cx, cy in cand:
        if dist(x, y, cx, cy) < 400:
            break
    else:
        X[x].append((x, y))
        Y[y].append((x, y))
        ans +=1
print ans
0