結果

問題 No.202 1円玉投げ
ユーザー roiti46roiti46
提出日時 2015-05-04 18:34:14
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 539 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 815,232 KB
最終ジャッジ日時 2024-12-22 08:27:06
合計ジャッジ時間 73,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 35 ms
16,384 KB
testcase_05 WA -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 MLE -
testcase_13 WA -
testcase_14 WA -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 66 ms
21,888 KB
testcase_23 AC 71 ms
23,936 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 60 ms
21,888 KB
testcase_27 AC 80 ms
24,064 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 71 ms
22,784 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 77 ms
25,856 KB
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 AC 46 ms
18,304 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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