結果

問題 No.1028 闇討ち
ユーザー d9etd9et
提出日時 2020-04-17 22:07:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-10-03 13:10:58
合計ジャッジ時間 3,650 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 40 ms
58,624 KB
testcase_06 AC 44 ms
62,976 KB
testcase_07 AC 34 ms
52,264 KB
testcase_08 AC 36 ms
58,368 KB
testcase_09 AC 59 ms
76,640 KB
testcase_10 AC 64 ms
77,196 KB
testcase_11 AC 86 ms
81,152 KB
testcase_12 AC 172 ms
98,452 KB
testcase_13 AC 174 ms
98,616 KB
testcase_14 AC 127 ms
88,340 KB
testcase_15 AC 78 ms
80,740 KB
testcase_16 AC 189 ms
101,504 KB
testcase_17 AC 191 ms
101,596 KB
testcase_18 AC 188 ms
101,248 KB
testcase_19 AC 193 ms
101,760 KB
testcase_20 AC 188 ms
101,504 KB
testcase_21 AC 187 ms
101,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from itertools import accumulate
n = int(input())
a = [list(map(int,input().split())) for i in range(n)]
ls = [[0 for i in range(n)] for j in range(n)]
cost = 0
for i in range(n):
  for j in range(n):
    x = a[i][j]
    x -= 1
    cost += max(i,j)
    if i>j:
      ls[x][1] += -1
      if i-j+1<n:
        ls[x][i-j+1] += 1
    if i+j<n-1:
      ls[x][i+j+1] += 1
for i in range(n):
  ls[i] = list(accumulate(ls[i]))
  ls[i] = list(accumulate(ls[i]))
for i in range(n):
  cost += min(ls[i])
print(cost)
0