結果
問題 | No.513 宝探し2 |
ユーザー | aru aru |
提出日時 | 2020-10-15 22:18:27 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,729 bytes |
コンパイル時間 | 12,491 ms |
コンパイル使用メモリ | 223,100 KB |
実行使用メモリ | 24,836 KB |
平均クエリ数 | 0.25 |
最終ジャッジ日時 | 2024-07-17 07:09:43 |
合計ジャッジ時間 | 16,342 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) var sc = bufio.NewScanner(os.Stdin) var wr = bufio.NewWriter(os.Stdout) func out(x ...interface{}) { fmt.Fprintln(wr, x...) } func getI() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil { panic(e) } return i } func getF() float64 { sc.Scan() i, e := strconv.ParseFloat(sc.Text(), 64) if e != nil { panic(e) } return i } func getInts(N int) []int { ret := make([]int, N) for i := 0; i < N; i++ { ret[i] = getI() } return ret } func getS() 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() { defer wr.Flush() sc.Split(bufio.ScanWords) sc.Buffer([]byte{}, 1000000) // this template is new version. // use getI(), getS(), getInts(), getF() fmt.Println(0, 0) l0 := getI() fmt.Println(0, 1000000) l1 := getI() fmt.Println(1000000, 0) l2 := getI() // out(1000000, 1000000) //l3 := getI() for i := 0; i < l0; i++ { x0, y0 := i, l0-i for j := 0; j < l1; j++ { x1, y1 := j, l1-i if x0 == x1 && y0 == y1 { for k := 0; k < l2; k++ { x2, y2 := k, l2-k if x0 == x2 && y0 == y2 { fmt.Println(x0, y0) return } } } } } }