結果

問題 No.202 1円玉投げ
ユーザー pluto77pluto77
提出日時 2019-11-19 10:20:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,087 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 58,368 KB
最終ジャッジ日時 2024-06-01 21:31:02
合計ジャッジ時間 20,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,075 ms
55,552 KB
testcase_01 AC 817 ms
58,368 KB
testcase_02 AC 112 ms
38,272 KB
testcase_03 AC 110 ms
38,400 KB
testcase_04 AC 114 ms
38,272 KB
testcase_05 AC 153 ms
39,552 KB
testcase_06 AC 759 ms
53,504 KB
testcase_07 AC 838 ms
55,040 KB
testcase_08 AC 836 ms
55,168 KB
testcase_09 AC 499 ms
48,128 KB
testcase_10 AC 280 ms
42,624 KB
testcase_11 AC 425 ms
46,592 KB
testcase_12 AC 443 ms
46,848 KB
testcase_13 AC 295 ms
43,136 KB
testcase_14 AC 189 ms
39,680 KB
testcase_15 AC 486 ms
47,872 KB
testcase_16 AC 958 ms
55,552 KB
testcase_17 AC 968 ms
55,552 KB
testcase_18 AC 949 ms
55,680 KB
testcase_19 AC 460 ms
47,232 KB
testcase_20 AC 687 ms
51,968 KB
testcase_21 AC 459 ms
47,232 KB
testcase_22 AC 121 ms
38,400 KB
testcase_23 AC 116 ms
38,528 KB
testcase_24 AC 119 ms
38,400 KB
testcase_25 AC 117 ms
38,272 KB
testcase_26 AC 118 ms
38,400 KB
testcase_27 AC 119 ms
38,528 KB
testcase_28 AC 125 ms
38,272 KB
testcase_29 AC 116 ms
38,400 KB
testcase_30 AC 121 ms
38,528 KB
testcase_31 AC 115 ms
38,400 KB
testcase_32 AC 119 ms
38,528 KB
testcase_33 AC 117 ms
38,272 KB
testcase_34 AC 123 ms
38,400 KB
testcase_35 AC 1,075 ms
55,168 KB
testcase_36 AC 1,087 ms
55,296 KB
testcase_37 AC 884 ms
56,064 KB
testcase_38 AC 1,068 ms
55,424 KB
testcase_39 AC 112 ms
38,400 KB
testcase_40 AC 110 ms
38,400 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