結果

問題 No.202 1円玉投げ
ユーザー aru aruaru aru
提出日時 2020-09-12 11:11:58
言語 Go
(1.22.1)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 1,771 bytes
コンパイル時間 15,676 ms
コンパイル使用メモリ 221,872 KB
実行使用メモリ 35,820 KB
最終ジャッジ日時 2024-06-01 21:41:30
合計ジャッジ時間 18,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
14,620 KB
testcase_01 AC 79 ms
35,820 KB
testcase_02 AC 3 ms
7,584 KB
testcase_03 AC 3 ms
7,588 KB
testcase_04 AC 3 ms
7,584 KB
testcase_05 AC 19 ms
22,572 KB
testcase_06 AC 75 ms
34,460 KB
testcase_07 AC 78 ms
34,604 KB
testcase_08 AC 80 ms
34,616 KB
testcase_09 AC 62 ms
33,708 KB
testcase_10 AC 42 ms
31,784 KB
testcase_11 AC 56 ms
33,452 KB
testcase_12 AC 56 ms
33,448 KB
testcase_13 AC 48 ms
32,172 KB
testcase_14 AC 20 ms
24,112 KB
testcase_15 AC 59 ms
33,712 KB
testcase_16 AC 38 ms
14,572 KB
testcase_17 AC 36 ms
12,368 KB
testcase_18 AC 35 ms
12,368 KB
testcase_19 AC 57 ms
33,452 KB
testcase_20 AC 68 ms
34,340 KB
testcase_21 AC 57 ms
33,580 KB
testcase_22 AC 7 ms
11,436 KB
testcase_23 AC 7 ms
11,436 KB
testcase_24 AC 4 ms
7,600 KB
testcase_25 AC 4 ms
7,724 KB
testcase_26 AC 3 ms
7,592 KB
testcase_27 AC 4 ms
7,596 KB
testcase_28 AC 4 ms
7,592 KB
testcase_29 AC 3 ms
7,596 KB
testcase_30 AC 6 ms
11,048 KB
testcase_31 AC 3 ms
7,592 KB
testcase_32 AC 7 ms
11,048 KB
testcase_33 AC 3 ms
7,596 KB
testcase_34 AC 3 ms
7,596 KB
testcase_35 AC 36 ms
10,356 KB
testcase_36 AC 47 ms
15,664 KB
testcase_37 AC 79 ms
35,632 KB
testcase_38 AC 38 ms
12,360 KB
testcase_39 AC 4 ms
8,100 KB
testcase_40 AC 3 ms
7,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"sort"
	"strconv"
)

func out(x ...interface{}) {
	fmt.Println(x...)
}

var sc = bufio.NewScanner(os.Stdin)

func getInt() int {
	sc.Scan()
	i, e := strconv.Atoi(sc.Text())
	if e != nil {
		panic(e)
	}
	return i
}

func getInts(N int) []int {
	ret := make([]int, N)
	for i := 0; i < N; i++ {
		ret[i] = getInt()
	}
	return ret
}

func getString() string {
	sc.Scan()
	return sc.Text()
}

// min, max, asub, absなど基本関数
func max(a, b int) int {
	if a > b {
		return a
	}
	return b
}

func min(a, b int) int {
	if a < b {
		return a
	}
	return b
}

func asub(a, b int) int {
	if a > b {
		return a - b
	}
	return b - a
}

func abs(a int) int {
	if a >= 0 {
		return a
	}
	return -a
}

func lowerBound(a []int, x int) int {
	idx := sort.Search(len(a), func(i int) bool {
		return a[i] >= x
	})
	return idx
}

func upperBound(a []int, x int) int {
	idx := sort.Search(len(a), func(i int) bool {
		return a[i] > x
	})
	return idx
}

func main() {
	sc.Split(bufio.ScanWords)
	N := getInt()
	x := make([]int, N)
	y := make([]int, N)
	var m [2010][2010][]int
	for i := 0; i < N; i++ {
		x[i], y[i] = getInt(), getInt()
	}
	cnt := 0
	for i := 0; i < N; i++ {
		xpos := (x[i]+19)/20 + 1
		ypos := (y[i]+19)/20 + 1
		flg := true
		// out(i, x[i], y[1], xpos, ypos)
	L0:
		for dx := -1; dx <= 1; dx++ {
			for dy := -1; dy <= 1; dy++ {
				xx := xpos + dx
				yy := ypos + dy
				// out("xx, yy", xx, yy)
				for _, e := range m[xx][yy] {
					rx := abs(x[i] - x[e])
					ry := abs(y[i] - y[e])
					// out(i, ":", x[i], y[i], "vs", e, ":", x[e], y[e], rx, ry)
					if rx*rx+ry*ry < 400 {
						flg = false
						break L0
					}
				}
			}
		}
		if flg {
			m[xpos][ypos] = append(m[xpos][ypos], i)
			cnt++
		}
	}
	out(cnt)
}
0