結果

問題 No.202 1円玉投げ
ユーザー pluto77pluto77
提出日時 2019-11-19 10:20:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,262 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 58,368 KB
最終ジャッジ日時 2024-12-22 11:45:08
合計ジャッジ時間 24,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,262 ms
55,296 KB
testcase_01 AC 998 ms
58,368 KB
testcase_02 AC 146 ms
38,144 KB
testcase_03 AC 152 ms
38,272 KB
testcase_04 AC 149 ms
38,016 KB
testcase_05 AC 193 ms
39,424 KB
testcase_06 AC 907 ms
53,248 KB
testcase_07 AC 1,022 ms
54,912 KB
testcase_08 AC 1,009 ms
55,040 KB
testcase_09 AC 607 ms
48,000 KB
testcase_10 AC 348 ms
42,368 KB
testcase_11 AC 531 ms
46,464 KB
testcase_12 AC 532 ms
46,592 KB
testcase_13 AC 367 ms
43,008 KB
testcase_14 AC 226 ms
39,424 KB
testcase_15 AC 592 ms
47,616 KB
testcase_16 AC 1,077 ms
55,424 KB
testcase_17 AC 1,089 ms
55,552 KB
testcase_18 AC 1,096 ms
55,296 KB
testcase_19 AC 561 ms
47,104 KB
testcase_20 AC 823 ms
51,968 KB
testcase_21 AC 577 ms
47,232 KB
testcase_22 AC 154 ms
38,400 KB
testcase_23 AC 157 ms
38,400 KB
testcase_24 AC 152 ms
38,272 KB
testcase_25 AC 154 ms
38,272 KB
testcase_26 AC 153 ms
38,400 KB
testcase_27 AC 154 ms
38,272 KB
testcase_28 AC 149 ms
38,400 KB
testcase_29 AC 151 ms
38,144 KB
testcase_30 AC 152 ms
38,528 KB
testcase_31 AC 154 ms
38,400 KB
testcase_32 AC 155 ms
38,400 KB
testcase_33 AC 151 ms
38,272 KB
testcase_34 AC 157 ms
38,400 KB
testcase_35 AC 1,243 ms
55,040 KB
testcase_36 AC 1,243 ms
55,296 KB
testcase_37 AC 1,081 ms
56,064 KB
testcase_38 AC 1,232 ms
55,296 KB
testcase_39 AC 146 ms
38,272 KB
testcase_40 AC 149 ms
38,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki202

n=int(raw_input())
l=[[[] for i in range(600)] for j in range(600)]
res=0
for i in range(n):
 x,y=map(int,raw_input().split())
 ax,ay=(x/40)+1,(y/40)+1
 f=True
 for dx in (-1,0,1):
  for dy in (-1,0,1):
   for bx,by in l[ax+dx][ay+dy]:
    if (bx-x)**2+(by-y)**2<400:
      f=False
      break
 if f:
  res+=1
  l[ax][ay].append((x,y))
print res
0