結果

問題 No.202 1円玉投げ
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-22 00:31:56
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 321 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 76,564 KB
実行使用メモリ 95,792 KB
最終ジャッジ日時 2024-06-01 20:23:13
合計ジャッジ時間 9,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
90,892 KB
testcase_01 AC 292 ms
95,792 KB
testcase_02 AC 82 ms
79,168 KB
testcase_03 AC 82 ms
79,372 KB
testcase_04 AC 82 ms
79,780 KB
testcase_05 AC 131 ms
87,160 KB
testcase_06 AC 287 ms
93,728 KB
testcase_07 AC 319 ms
94,384 KB
testcase_08 AC 321 ms
94,728 KB
testcase_09 AC 224 ms
91,792 KB
testcase_10 AC 177 ms
88,592 KB
testcase_11 AC 202 ms
90,764 KB
testcase_12 AC 218 ms
90,552 KB
testcase_13 AC 171 ms
88,728 KB
testcase_14 AC 129 ms
86,848 KB
testcase_15 AC 234 ms
91,900 KB
testcase_16 AC 228 ms
92,132 KB
testcase_17 AC 222 ms
92,584 KB
testcase_18 AC 224 ms
92,332 KB
testcase_19 AC 213 ms
90,796 KB
testcase_20 AC 294 ms
93,808 KB
testcase_21 AC 241 ms
90,756 KB
testcase_22 AC 109 ms
80,520 KB
testcase_23 AC 107 ms
80,552 KB
testcase_24 AC 101 ms
80,396 KB
testcase_25 AC 101 ms
80,568 KB
testcase_26 AC 110 ms
81,296 KB
testcase_27 AC 110 ms
80,904 KB
testcase_28 AC 100 ms
80,528 KB
testcase_29 AC 106 ms
80,616 KB
testcase_30 AC 111 ms
81,024 KB
testcase_31 AC 99 ms
80,536 KB
testcase_32 AC 108 ms
80,660 KB
testcase_33 AC 115 ms
80,576 KB
testcase_34 AC 120 ms
80,792 KB
testcase_35 AC 217 ms
91,184 KB
testcase_36 AC 261 ms
91,252 KB
testcase_37 AC 320 ms
94,348 KB
testcase_38 AC 217 ms
91,052 KB
testcase_39 AC 84 ms
79,108 KB
testcase_40 AC 88 ms
79,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
segs=[[[] for i in range(510)] for j in range(510)]

ans=0
for i in range(N):
    x,y=map(int,raw_input().split())
    xi,yj=(x/40)+1,(y/40+1)
    ok=True
    for dx in (-1,0,1):
        for dy in (-1,0,1):
            for (p,q) in segs[xi+dx][yj+dy]:
                if (p-x)*(p-x)+(q-y)*(q-y)<400:
                    ok=False
                    break
    if ok:
        ans+=1
        segs[xi][yj].append((x,y))
print ans

0