結果

問題 No.1668 Grayscale
ユーザー harurunharurun
提出日時 2021-09-03 22:55:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,269 ms / 4,000 ms
コード長 405 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 224,768 KB
最終ジャッジ日時 2024-12-15 16:26:52
合計ジャッジ時間 6,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 478 ms
224,768 KB
testcase_07 AC 462 ms
224,768 KB
testcase_08 AC 278 ms
155,136 KB
testcase_09 AC 1,269 ms
221,056 KB
testcase_10 AC 624 ms
128,608 KB
testcase_11 AC 48 ms
59,904 KB
testcase_12 AC 69 ms
67,584 KB
testcase_13 AC 104 ms
80,980 KB
testcase_14 AC 230 ms
102,272 KB
testcase_15 AC 150 ms
86,988 KB
testcase_16 AC 121 ms
77,312 KB
testcase_17 AC 100 ms
81,792 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 40 ms
51,968 KB
testcase_20 AC 59 ms
64,512 KB
testcase_21 AC 65 ms
67,840 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 40 ms
52,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
pin=stdin.readline
H,W,N=map(int,pin().split())
C=[list(map(int,pin().split()))for _ in[0]*H]
d=[[]for _ in[0]*N]
for i in range(H):
 for j in range(W):
  d[C[i][j]-1].append((i,j))
a=s=1
for i in range(N):
 f=0
 for x,y in d[i]:
  for u,t in ((1,0),(0,1),(-1,0),(0,-1)):
   if 0<=x+u<H and 0<=y+t<W and s<=C[x+u][y+t]<C[x][y]:
    a+=1;f=1;s=C[x][y]
    break
  if f:break
print(a)
0