結果

問題 No.1668 Grayscale
ユーザー rianoriano
提出日時 2021-08-31 00:44:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 675 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 231,040 KB
最終ジャッジ日時 2024-05-09 00:51:13
合計ジャッジ時間 14,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,696 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 3,491 ms
231,040 KB
testcase_07 AC 3,439 ms
230,996 KB
testcase_08 AC 859 ms
19,584 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W,N = map(int, input().split())
ans = 1

c = []
for i in range(H):
    lis = list(map(int, input().split()))
    c.append(lis)

ran = []
for i in range(H):
    for j in range(W-1):
        a = c[i][j]
        b = c[i][j+1]
        if(a!=b):
            if(a<b):
                a,b = b,a
            r = [a,b]
            ran.append(r)

for i in range(H-1):
    for j in range(W):
        a = c[i][j]
        b = c[i+1][j]
        if(a!=b):
            if(a<b):
                a,b = b,a
            r = [a,b]
            ran.append(r)

ran.sort()
mx = 0
for r in ran:
    if(r[1]>=mx):
        mx = r[0]
        ans += 1

print(ans)
0