結果

問題 No.202 1円玉投げ
ユーザー roiti46roiti46
提出日時 2015-05-04 18:26:36
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 653 bytes
コンパイル時間 1,604 ms
コンパイル使用メモリ 76,604 KB
実行使用メモリ 207,296 KB
最終ジャッジ日時 2024-06-01 19:48:03
合計ジャッジ時間 36,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,604 ms
207,296 KB
testcase_01 AC 2,641 ms
91,960 KB
testcase_02 AC 72 ms
77,088 KB
testcase_03 AC 72 ms
76,672 KB
testcase_04 AC 72 ms
76,672 KB
testcase_05 AC 189 ms
82,736 KB
testcase_06 AC 1,907 ms
89,856 KB
testcase_07 AC 2,399 ms
91,472 KB
testcase_08 AC 2,516 ms
92,620 KB
testcase_09 AC 926 ms
87,884 KB
testcase_10 AC 358 ms
85,080 KB
testcase_11 AC 710 ms
86,736 KB
testcase_12 AC 769 ms
87,256 KB
testcase_13 AC 381 ms
85,232 KB
testcase_14 AC 199 ms
83,116 KB
testcase_15 AC 933 ms
88,400 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 807 ms
87,740 KB
testcase_20 AC 1,581 ms
89,940 KB
testcase_21 AC 779 ms
87,584 KB
testcase_22 AC 131 ms
80,808 KB
testcase_23 AC 121 ms
80,908 KB
testcase_24 AC 99 ms
80,520 KB
testcase_25 AC 95 ms
80,416 KB
testcase_26 AC 131 ms
80,540 KB
testcase_27 AC 130 ms
80,704 KB
testcase_28 AC 97 ms
80,296 KB
testcase_29 AC 98 ms
80,632 KB
testcase_30 AC 93 ms
80,560 KB
testcase_31 AC 94 ms
80,048 KB
testcase_32 AC 113 ms
81,196 KB
testcase_33 AC 128 ms
80,952 KB
testcase_34 AC 124 ms
81,216 KB
testcase_35 TLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

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