結果

問題 No.1668 Grayscale
ユーザー noiminoimi
提出日時 2021-08-31 01:15:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 607 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 356,224 KB
最終ジャッジ日時 2024-12-15 09:01:20
合計ジャッジ時間 18,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,892 KB
testcase_01 AC 38 ms
60,368 KB
testcase_02 AC 38 ms
52,612 KB
testcase_03 AC 38 ms
52,384 KB
testcase_04 AC 37 ms
52,156 KB
testcase_05 AC 38 ms
53,188 KB
testcase_06 AC 1,170 ms
321,940 KB
testcase_07 AC 1,208 ms
322,008 KB
testcase_08 AC 139 ms
84,724 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 40 ms
53,820 KB
testcase_12 AC 67 ms
70,488 KB
testcase_13 AC 396 ms
94,420 KB
testcase_14 AC 1,415 ms
124,936 KB
testcase_15 AC 1,049 ms
115,752 KB
testcase_16 AC 815 ms
102,244 KB
testcase_17 AC 292 ms
87,332 KB
testcase_18 AC 38 ms
53,424 KB
testcase_19 AC 38 ms
54,116 KB
testcase_20 AC 54 ms
64,380 KB
testcase_21 AC 76 ms
74,044 KB
testcase_22 AC 38 ms
52,764 KB
testcase_23 AC 39 ms
356,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

c = [list(map(int, input().split())) for _ in range(H)]

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