結果
問題 | No.202 1円玉投げ |
ユーザー | aru aru |
提出日時 | 2020-09-12 11:20:50 |
言語 | Go (1.23.4) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,622 bytes |
コンパイル時間 | 11,638 ms |
コンパイル使用メモリ | 224,032 KB |
実行使用メモリ | 16,236 KB |
最終ジャッジ日時 | 2024-12-22 12:04:29 |
合計ジャッジ時間 | 123,093 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | AC | 1 ms
13,824 KB |
testcase_03 | AC | 1 ms
10,496 KB |
testcase_04 | AC | 1 ms
13,764 KB |
testcase_05 | AC | 408 ms
10,496 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 3,857 ms
14,592 KB |
testcase_10 | AC | 1,537 ms
13,760 KB |
testcase_11 | AC | 3,092 ms
10,496 KB |
testcase_12 | AC | 3,217 ms
14,208 KB |
testcase_13 | AC | 1,712 ms
6,820 KB |
testcase_14 | AC | 494 ms
5,248 KB |
testcase_15 | AC | 3,706 ms
5,504 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 3,447 ms
5,376 KB |
testcase_20 | TLE | - |
testcase_21 | AC | 3,413 ms
5,376 KB |
testcase_22 | AC | 66 ms
5,248 KB |
testcase_23 | AC | 64 ms
5,248 KB |
testcase_24 | AC | 16 ms
5,248 KB |
testcase_25 | AC | 42 ms
5,248 KB |
testcase_26 | AC | 65 ms
5,248 KB |
testcase_27 | AC | 65 ms
5,248 KB |
testcase_28 | AC | 29 ms
5,248 KB |
testcase_29 | AC | 29 ms
5,248 KB |
testcase_30 | AC | 65 ms
5,248 KB |
testcase_31 | AC | 20 ms
5,248 KB |
testcase_32 | AC | 65 ms
5,248 KB |
testcase_33 | AC | 45 ms
5,248 KB |
testcase_34 | AC | 65 ms
5,248 KB |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | AC | 17 ms
5,248 KB |
testcase_40 | AC | 10 ms
14,208 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 } type pos struct { x, y int } func main() { sc.Split(bufio.ScanWords) N := getInt() x := make([]int, N) y := make([]int, N) for i := 0; i < N; i++ { x[i], y[i] = getInt(), getInt() } cnt := 0 m := make(map[pos]bool) for i := 0; i < N; i++ { flg := true L0: for dx := -20; dx <= 20; dx++ { for dy := -20; dy <= 20; dy++ { xpos := dx + x[i] ypos := dy + y[i] if m[pos{xpos, ypos}] == false { continue } rx := abs(xpos - x[i]) ry := abs(ypos - y[i]) if rx*rx+ry*ry < 400 { flg = false break L0 } } } if flg { m[pos{x[i], y[i]}] = true cnt++ } } out(cnt) }