結果

問題 No.1028 闇討ち
ユーザー konchanksukonchanksu
提出日時 2020-04-20 20:52:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 86,048 KB
最終ジャッジ日時 2024-10-06 09:13:00
合計ジャッジ時間 3,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 44 ms
54,528 KB
testcase_06 AC 55 ms
64,000 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 42 ms
54,912 KB
testcase_09 AC 68 ms
73,276 KB
testcase_10 AC 79 ms
76,792 KB
testcase_11 AC 99 ms
78,080 KB
testcase_12 AC 186 ms
84,992 KB
testcase_13 AC 185 ms
84,608 KB
testcase_14 AC 134 ms
80,104 KB
testcase_15 AC 92 ms
77,696 KB
testcase_16 AC 193 ms
86,048 KB
testcase_17 AC 196 ms
86,016 KB
testcase_18 AC 191 ms
85,852 KB
testcase_19 AC 194 ms
85,760 KB
testcase_20 AC 194 ms
85,760 KB
testcase_21 AC 193 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy, copy
# imosじゃない

n = int(input())

a = [list(map(int, input().split())) for i in range(n)]
ans = [0 for i in range(n)]

imo = [0 for i in range(n)]
tmp = [0 for i in range(n)]

for i in range(n):
    for j in range(n):
        imo[a[i][j] - 1] += max(i, j)
        if i >= j:
            tmp[a[i][j] - 1] -= 1

ans = copy(imo)

# print(tmp)
for i in range(1, n):
    for j in range(n):
        if j - i + 1 == 0:
            tmp[a[i - 1][0] - 1] += 2

        elif j - i + 1 < 0:
            tmp[a[j][abs(j - i + 1)] - 1] += 1

        else:
            tmp[a[j][abs(j - i + 1)] - 1] += 1
            
    for j in range(n):
        imo[j] += tmp[j]
        ans[j] = min(imo[j], ans[j])  

print(sum(ans))
0