結果

問題 No.1668 Grayscale
ユーザー harurunharurun
提出日時 2021-09-03 22:59:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 227,584 KB
最終ジャッジ日時 2024-05-09 06:19:09
合計ジャッジ時間 7,181 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 43 ms
51,584 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 323 ms
152,428 KB
testcase_09 WA -
testcase_10 AC 800 ms
127,104 KB
testcase_11 AC 54 ms
60,672 KB
testcase_12 WA -
testcase_13 AC 125 ms
80,376 KB
testcase_14 AC 271 ms
102,656 KB
testcase_15 WA -
testcase_16 AC 173 ms
83,200 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 44 ms
52,096 KB
testcase_20 AC 65 ms
64,896 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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 H>x+u>=0and W>y+t>0and s<=C[x+u][y+t]<C[x][y]:a+=1;f=1;s=C[x][y];break
  if f:break
print(a)
0