結果
問題 | No.60 魔法少女 |
ユーザー | yukirin |
提出日時 | 2016-03-29 18:24:34 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,094 bytes |
コンパイル時間 | 10,781 ms |
コンパイル使用メモリ | 237,396 KB |
実行使用メモリ | 42,880 KB |
最終ジャッジ日時 | 2024-10-10 23:50:19 |
合計ジャッジ時間 | 12,599 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
38,408 KB |
testcase_01 | AC | 54 ms
38,396 KB |
testcase_02 | AC | 53 ms
38,396 KB |
testcase_03 | AC | 43 ms
42,876 KB |
testcase_04 | AC | 69 ms
42,876 KB |
testcase_05 | AC | 72 ms
42,880 KB |
testcase_06 | AC | 92 ms
42,880 KB |
testcase_07 | WA | - |
testcase_08 | AC | 63 ms
42,876 KB |
testcase_09 | AC | 47 ms
42,876 KB |
testcase_10 | AC | 89 ms
42,880 KB |
testcase_11 | AC | 41 ms
42,876 KB |
testcase_12 | AC | 57 ms
42,876 KB |
testcase_13 | AC | 93 ms
42,880 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" ) var sc = bufio.NewScanner(os.Stdin) func main() { sc.Split(bufio.ScanWords) n, k := nextInt(), nextInt() m, eria := make([][]int, 1001), make([][]int, 2002) for i := range m { m[i] = make([]int, 1001) } for i := range eria { eria[i] = make([]int, 2002) } for i := 0; i < n; i++ { x, y, hp := nextInt(), nextInt(), nextInt() m[y+500][x+500] = hp } for i := 0; i < k; i++ { x, y, w, h, d := nextInt()+500, nextInt()+500, nextInt(), nextInt(), nextInt() eria[y][x], eria[y+h+1][x+w+1] = d, d eria[y][x+w+1], eria[y+h+1][x] = -d, -d } for i, l := range eria { for j := range l[1:] { eria[i][j+1] += eria[i][j] } } for i, l := range eria[1:] { for j := range l { eria[i+1][j] += eria[i][j] } } total := 0 for i, l := range m[:1001] { for j, v := range l[:1001] { if eria[i][j] >= v { continue } total += v - eria[i][j] } } fmt.Println(total) } func nextLine() string { sc.Scan() return sc.Text() } func nextInt() int { i, _ := strconv.Atoi(nextLine()) return i }