結果

問題 No.1338 Giant Class
ユーザー kozykozy
提出日時 2021-01-15 21:49:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 188 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 826,496 KB
最終ジャッジ日時 2024-11-26 14:07:35
合計ジャッジ時間 36,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,616 KB
testcase_01 AC 25 ms
10,240 KB
testcase_02 AC 632 ms
14,464 KB
testcase_03 AC 27 ms
10,368 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 1,555 ms
359,040 KB
testcase_07 AC 1,833 ms
360,576 KB
testcase_08 AC 825 ms
122,496 KB
testcase_09 AC 503 ms
43,648 KB
testcase_10 AC 1,101 ms
125,696 KB
testcase_11 AC 1,020 ms
316,136 KB
testcase_12 AC 496 ms
13,952 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,Q=map(int,input().split())
L=[H+1 for i in range(W)]
ans=H*W
for i in range(Q):
    Y,X=map(int,input().split())
    if L[X-1]>Y:
        ans-=L[X-1]-Y
        L[X-1]=Y
    print(ans)
0