結果
問題 | No.202 1円玉投げ |
ユーザー | aru aru |
提出日時 | 2020-09-12 11:11:58 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 85 ms / 5,000 ms |
コード長 | 1,771 bytes |
コンパイル時間 | 11,811 ms |
コンパイル使用メモリ | 233,352 KB |
実行使用メモリ | 32,768 KB |
最終ジャッジ日時 | 2024-12-22 12:02:21 |
合計ジャッジ時間 | 13,696 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
10,496 KB |
testcase_01 | AC | 83 ms
32,768 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 22 ms
18,816 KB |
testcase_06 | AC | 78 ms
32,128 KB |
testcase_07 | AC | 80 ms
32,384 KB |
testcase_08 | AC | 83 ms
32,384 KB |
testcase_09 | AC | 69 ms
30,976 KB |
testcase_10 | AC | 49 ms
28,544 KB |
testcase_11 | AC | 61 ms
30,592 KB |
testcase_12 | AC | 61 ms
30,720 KB |
testcase_13 | AC | 51 ms
28,928 KB |
testcase_14 | AC | 27 ms
20,352 KB |
testcase_15 | AC | 67 ms
30,976 KB |
testcase_16 | AC | 40 ms
10,752 KB |
testcase_17 | AC | 37 ms
9,472 KB |
testcase_18 | AC | 40 ms
9,472 KB |
testcase_19 | AC | 61 ms
30,592 KB |
testcase_20 | AC | 73 ms
31,872 KB |
testcase_21 | AC | 62 ms
30,720 KB |
testcase_22 | AC | 8 ms
7,168 KB |
testcase_23 | AC | 8 ms
7,168 KB |
testcase_24 | AC | 4 ms
5,248 KB |
testcase_25 | AC | 4 ms
5,248 KB |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 4 ms
5,248 KB |
testcase_29 | AC | 3 ms
5,248 KB |
testcase_30 | AC | 7 ms
6,784 KB |
testcase_31 | AC | 4 ms
5,248 KB |
testcase_32 | AC | 8 ms
6,912 KB |
testcase_33 | AC | 4 ms
5,248 KB |
testcase_34 | AC | 4 ms
5,248 KB |
testcase_35 | AC | 36 ms
8,320 KB |
testcase_36 | AC | 50 ms
11,904 KB |
testcase_37 | AC | 85 ms
32,512 KB |
testcase_38 | AC | 40 ms
8,320 KB |
testcase_39 | AC | 4 ms
5,248 KB |
testcase_40 | AC | 4 ms
5,248 KB |
ソースコード
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) }