結果

問題 No.202 1円玉投げ
ユーザー roiti46roiti46
提出日時 2015-05-04 18:26:04
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 653 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 46,848 KB
最終ジャッジ日時 2024-12-22 08:22:07
合計ジャッジ時間 98,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 18 ms
35,328 KB
testcase_03 AC 18 ms
15,104 KB
testcase_04 AC 19 ms
33,280 KB
testcase_05 AC 116 ms
34,688 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 2,236 ms
46,848 KB
testcase_10 AC 647 ms
22,052 KB
testcase_11 AC 2,048 ms
19,712 KB
testcase_12 AC 1,705 ms
20,096 KB
testcase_13 AC 633 ms
15,488 KB
testcase_14 AC 140 ms
11,520 KB
testcase_15 AC 2,170 ms
20,992 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,878 ms
20,480 KB
testcase_20 AC 4,178 ms
25,728 KB
testcase_21 AC 1,827 ms
20,480 KB
testcase_22 AC 95 ms
9,856 KB
testcase_23 AC 97 ms
9,984 KB
testcase_24 AC 35 ms
9,728 KB
testcase_25 AC 34 ms
9,600 KB
testcase_26 AC 91 ms
9,984 KB
testcase_27 AC 94 ms
9,728 KB
testcase_28 AC 34 ms
9,472 KB
testcase_29 AC 35 ms
9,600 KB
testcase_30 AC 31 ms
9,728 KB
testcase_31 AC 32 ms
9,600 KB
testcase_32 AC 32 ms
9,984 KB
testcase_33 AC 37 ms
9,472 KB
testcase_34 AC 42 ms
9,728 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 23 ms
9,728 KB
testcase_40 AC 22 ms
28,032 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