結果

問題 No.1338 Giant Class
ユーザー kozykozy
提出日時 2021-01-15 21:49:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 188 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 821,120 KB
最終ジャッジ日時 2024-05-04 23:24:31
合計ジャッジ時間 11,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 619 ms
14,720 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 1,571 ms
359,168 KB
testcase_07 AC 1,665 ms
360,832 KB
testcase_08 AC 764 ms
122,624 KB
testcase_09 AC 484 ms
43,776 KB
testcase_10 AC 1,044 ms
125,696 KB
testcase_11 AC 947 ms
316,160 KB
testcase_12 AC 470 ms
14,080 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

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