結果

問題 No.1338 Giant Class
ユーザー moharan627moharan627
提出日時 2021-01-15 22:45:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 948 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 144,768 KB
最終ジャッジ日時 2024-05-05 00:45:36
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,264 KB
testcase_01 AC 54 ms
53,760 KB
testcase_02 AC 301 ms
77,568 KB
testcase_03 AC 52 ms
60,032 KB
testcase_04 AC 49 ms
60,672 KB
testcase_05 AC 51 ms
61,952 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 入力を整数に変換して受け取る
import sys
# 入力を整数に変換して受け取る
def II(): return int(sys.stdin.readline())
# 入力全てを整数に変換したものの配列を受け取る
def LI(): return list(map(int, sys.stdin.readline().split()))
# 入力の文字列を1文字ずつに分けたものの配列を受け取る
def LC(): return list(input())
# 入力の数字列を1桁ずつに分けたものの配列を受け取る
def IC():return [int(c) for c in input()]
#少ない1行のint変数に入れる様の入力.例:N, A, B = map(int, sys.stdin.readline().split())
def MI(): return map(int, sys.stdin.readline().split())
def solve():
    H,W,Q = MI()
    from collections import defaultdict
    Seat = defaultdict(lambda: H)
    for i in range(Q):
        x,y = MI()
        Seat[y] = min(Seat[y],x-1)
        First = list(Seat.values())
        print(H * (W - len(Seat)) + sum(First))
    return
solve()
0