結果

問題 No.1338 Giant Class
ユーザー timitimi
提出日時 2021-01-26 13:57:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 751 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,036 KB
最終ジャッジ日時 2024-06-23 13:36:21
合計ジャッジ時間 10,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 677 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 464 ms
17,372 KB
testcase_07 AC 642 ms
23,988 KB
testcase_08 AC 425 ms
17,372 KB
testcase_09 AC 414 ms
17,248 KB
testcase_10 AC 728 ms
23,988 KB
testcase_11 AC 94 ms
11,520 KB
testcase_12 AC 543 ms
17,364 KB
testcase_13 AC 437 ms
17,496 KB
testcase_14 AC 135 ms
12,276 KB
testcase_15 AC 187 ms
14,188 KB
testcase_16 AC 84 ms
11,648 KB
testcase_17 AC 423 ms
17,368 KB
testcase_18 AC 136 ms
12,412 KB
testcase_19 AC 210 ms
14,056 KB
testcase_20 AC 751 ms
24,036 KB
testcase_21 AC 724 ms
23,824 KB
testcase_22 AC 731 ms
23,988 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