結果

問題 No.1338 Giant Class
ユーザー first_vilfirst_vil
提出日時 2022-05-19 13:55:29
言語 Go
(1.22.1)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 17,171 ms
コンパイル使用メモリ 223,828 KB
実行使用メモリ 9,192 KB
最終ジャッジ日時 2024-09-17 20:03:05
合計ジャッジ時間 19,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 110 ms
7,840 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 94 ms
8,724 KB
testcase_07 AC 130 ms
8,980 KB
testcase_08 AC 88 ms
8,724 KB
testcase_09 AC 78 ms
7,956 KB
testcase_10 AC 139 ms
8,984 KB
testcase_11 AC 14 ms
6,944 KB
testcase_12 AC 94 ms
6,940 KB
testcase_13 AC 94 ms
8,812 KB
testcase_14 AC 25 ms
6,940 KB
testcase_15 AC 36 ms
6,940 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 96 ms
8,812 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 43 ms
6,940 KB
testcase_20 AC 163 ms
9,192 KB
testcase_21 AC 162 ms
9,192 KB
testcase_22 AC 161 ms
9,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main
import (
    "fmt"
    "os"
    "bufio"
)
func main() {
    r:=bufio.NewReader(os.Stdin)
    wr:=bufio.NewWriter(os.Stdout)
    defer wr.Flush()
    var h,w int64
    var q int
    fmt.Fscan(r,&h,&w,&q)
    m:=make(map[int64]int64)
    ans:=h*w
    for i:=0;i<q;i++ {
        var y,x int64
        fmt.Fscan(r,&y,&x)
        v,f:=m[x]
        if f {
            if v>y {
                ans-=v-y
                m[x]=y
            }
        } else {
            ans-=h+1-y
            m[x]=y
        }
        fmt.Fprintln(wr,ans)
    }
}
0