結果

問題 No.1338 Giant Class
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-12 10:02:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 98,316 KB
最終ジャッジ日時 2024-07-19 04:30:05
合計ジャッジ時間 4,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,208 KB
testcase_01 AC 34 ms
52,492 KB
testcase_02 AC 158 ms
86,904 KB
testcase_03 AC 41 ms
52,768 KB
testcase_04 AC 39 ms
54,152 KB
testcase_05 AC 46 ms
59,632 KB
testcase_06 AC 142 ms
93,044 KB
testcase_07 AC 174 ms
97,544 KB
testcase_08 AC 150 ms
91,504 KB
testcase_09 AC 143 ms
90,184 KB
testcase_10 AC 195 ms
96,380 KB
testcase_11 AC 90 ms
77,284 KB
testcase_12 AC 160 ms
91,144 KB
testcase_13 AC 148 ms
90,060 KB
testcase_14 AC 83 ms
78,492 KB
testcase_15 AC 91 ms
81,224 KB
testcase_16 AC 84 ms
76,840 KB
testcase_17 AC 145 ms
91,328 KB
testcase_18 AC 97 ms
78,236 KB
testcase_19 AC 114 ms
81,448 KB
testcase_20 AC 185 ms
98,076 KB
testcase_21 AC 169 ms
98,316 KB
testcase_22 AC 165 ms
98,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,q=map(int,input().split())
yx=[list(map(int,input().split())) for _ in range(q)]
now=h*w
d={}
for y,x in yx:
  if x in d:
    if d[x]<y:
      pass
    else:
      now-=d[x]-y
      d[x]=y
  else:
    d[x]=y
    now-=h-y+1
  print(now)

0