結果

問題 No.1338 Giant Class
ユーザー first_vilfirst_vil
提出日時 2022-05-19 13:57:24
言語 Go
(1.22.1)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 15,300 ms
コンパイル使用メモリ 229,472 KB
実行使用メモリ 9,192 KB
最終ジャッジ日時 2024-09-17 20:05:19
合計ジャッジ時間 18,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 108 ms
7,836 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 96 ms
8,852 KB
testcase_07 AC 129 ms
8,980 KB
testcase_08 AC 87 ms
8,724 KB
testcase_09 AC 78 ms
7,832 KB
testcase_10 AC 139 ms
8,984 KB
testcase_11 AC 13 ms
6,940 KB
testcase_12 AC 96 ms
6,940 KB
testcase_13 AC 95 ms
8,812 KB
testcase_14 AC 25 ms
6,940 KB
testcase_15 AC 35 ms
6,940 KB
testcase_16 AC 13 ms
6,944 KB
testcase_17 AC 97 ms
8,860 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 43 ms
6,940 KB
testcase_20 AC 158 ms
9,192 KB
testcase_21 AC 160 ms
9,108 KB
testcase_22 AC 161 ms
9,112 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)
        y=h+1-y
        if v:=m[x];v<y {
            ans-=y-v
            m[x]=y
        }
        fmt.Fprintln(wr,ans)
    }
}
0