結果

問題 No.1338 Giant Class
ユーザー tt
提出日時 2021-02-06 14:15:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 776 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,028 KB
最終ジャッジ日時 2024-07-02 22:20:54
合計ジャッジ時間 10,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 24 ms
10,880 KB
testcase_02 AC 619 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 502 ms
17,500 KB
testcase_07 AC 642 ms
24,028 KB
testcase_08 AC 423 ms
17,376 KB
testcase_09 AC 374 ms
17,344 KB
testcase_10 AC 655 ms
23,832 KB
testcase_11 AC 87 ms
11,648 KB
testcase_12 AC 589 ms
17,364 KB
testcase_13 AC 416 ms
17,244 KB
testcase_14 AC 121 ms
12,276 KB
testcase_15 AC 171 ms
14,064 KB
testcase_16 AC 76 ms
11,648 KB
testcase_17 AC 383 ms
17,288 KB
testcase_18 AC 124 ms
12,408 KB
testcase_19 AC 205 ms
14,060 KB
testcase_20 AC 670 ms
24,024 KB
testcase_21 AC 694 ms
24,020 KB
testcase_22 AC 776 ms
23,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, Q = map(int, input().split())
D = {}
d = H*W
for i in range(Q):
  y, x = map(int, input().split())
  if x-1 not in D:
    d-=H+1-y
    D[x-1]=y
  else:
    if D[x-1]>y:
      d-=D[x-1]-y
      D[x-1]=y
  print(d)
0