結果

問題 No.202 1円玉投げ
ユーザー convexineqconvexineq
提出日時 2020-12-17 19:02:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 5,000 ms
コード長 452 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 117,796 KB
最終ジャッジ日時 2024-06-01 21:42:10
合計ジャッジ時間 8,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
117,796 KB
testcase_01 AC 279 ms
116,952 KB
testcase_02 AC 67 ms
90,196 KB
testcase_03 AC 68 ms
90,140 KB
testcase_04 AC 67 ms
90,276 KB
testcase_05 AC 133 ms
108,528 KB
testcase_06 AC 266 ms
114,540 KB
testcase_07 AC 309 ms
115,212 KB
testcase_08 AC 333 ms
117,068 KB
testcase_09 AC 222 ms
112,060 KB
testcase_10 AC 202 ms
110,944 KB
testcase_11 AC 204 ms
112,236 KB
testcase_12 AC 204 ms
112,108 KB
testcase_13 AC 166 ms
110,224 KB
testcase_14 AC 132 ms
108,776 KB
testcase_15 AC 222 ms
111,228 KB
testcase_16 AC 191 ms
117,200 KB
testcase_17 AC 201 ms
117,608 KB
testcase_18 AC 194 ms
117,448 KB
testcase_19 AC 217 ms
111,572 KB
testcase_20 AC 261 ms
114,332 KB
testcase_21 AC 211 ms
112,056 KB
testcase_22 AC 108 ms
108,352 KB
testcase_23 AC 110 ms
108,120 KB
testcase_24 AC 107 ms
107,988 KB
testcase_25 AC 105 ms
108,252 KB
testcase_26 AC 104 ms
108,244 KB
testcase_27 AC 107 ms
108,180 KB
testcase_28 AC 105 ms
107,988 KB
testcase_29 AC 106 ms
108,216 KB
testcase_30 AC 115 ms
108,428 KB
testcase_31 AC 102 ms
108,584 KB
testcase_32 AC 117 ms
108,344 KB
testcase_33 AC 116 ms
108,144 KB
testcase_34 AC 114 ms
108,132 KB
testcase_35 AC 189 ms
117,760 KB
testcase_36 AC 234 ms
116,732 KB
testcase_37 AC 315 ms
115,604 KB
testcase_38 AC 187 ms
117,544 KB
testcase_39 AC 78 ms
91,956 KB
testcase_40 AC 74 ms
91,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = [[[] for _ in range(1002)] for _ in range(1002)]
n = int(input())
ans = 0
for _ in range(n):
    x,y = map(int,input().split())
    px,py = x//20, y//20
    ok = 1
    for i in range(-1,2):
        for j in range(-1,2):
            if px+i < 0 or py+j < 0: continue
            for v,w in d[px+i][py+j]:
                if (x-v)**2 + (y-w)**2 < 400:
                    ok = 0
    if ok:
        ans += 1
        d[px][py].append((x,y))

print(ans)
0