結果

問題 No.1668 Grayscale
ユーザー harurunharurun
提出日時 2021-09-03 22:57:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,151 ms / 4,000 ms
コード長 355 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 226,636 KB
最終ジャッジ日時 2024-05-09 06:15:04
合計ジャッジ時間 5,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,848 KB
testcase_01 AC 36 ms
52,568 KB
testcase_02 AC 38 ms
52,804 KB
testcase_03 AC 36 ms
52,532 KB
testcase_04 AC 35 ms
52,468 KB
testcase_05 AC 35 ms
52,128 KB
testcase_06 AC 459 ms
226,636 KB
testcase_07 AC 436 ms
226,568 KB
testcase_08 AC 270 ms
152,464 KB
testcase_09 AC 1,151 ms
222,448 KB
testcase_10 AC 587 ms
127,012 KB
testcase_11 AC 44 ms
60,676 KB
testcase_12 AC 69 ms
71,572 KB
testcase_13 AC 90 ms
80,076 KB
testcase_14 AC 208 ms
102,668 KB
testcase_15 AC 138 ms
86,608 KB
testcase_16 AC 124 ms
82,700 KB
testcase_17 AC 88 ms
81,644 KB
testcase_18 AC 35 ms
53,140 KB
testcase_19 AC 36 ms
53,596 KB
testcase_20 AC 50 ms
66,304 KB
testcase_21 AC 65 ms
70,708 KB
testcase_22 AC 35 ms
53,600 KB
testcase_23 AC 36 ms
52,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N=map(int,input().split());C=[list(map(int,input().split()))for _ in[0]*H];d=[[]for _ in[0]*N];a=s=1
for i in range(H):
 for j in range(W):d[C[i][j]-1].append((i,j))
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