結果
問題 | No.1028 闇討ち |
ユーザー | konchanksu |
提出日時 | 2020-04-20 18:30:17 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 860 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 82,944 KB |
最終ジャッジ日時 | 2024-10-06 09:07:35 |
合計ジャッジ時間 | 13,287 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,000 KB |
testcase_01 | AC | 34 ms
10,880 KB |
testcase_02 | AC | 34 ms
10,880 KB |
testcase_03 | AC | 31 ms
11,008 KB |
testcase_04 | AC | 31 ms
11,008 KB |
testcase_05 | AC | 34 ms
10,880 KB |
testcase_06 | AC | 39 ms
10,880 KB |
testcase_07 | AC | 31 ms
10,880 KB |
testcase_08 | AC | 33 ms
10,880 KB |
testcase_09 | AC | 127 ms
12,672 KB |
testcase_10 | AC | 178 ms
13,696 KB |
testcase_11 | AC | 658 ms
25,472 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 1,508 ms
46,208 KB |
testcase_15 | AC | 474 ms
21,120 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
from copy import deepcopy # imosじゃない n = int(input()) a = [list(map(int, input().split())) for i in range(n)] ans = [0 for i in range(n)] imos = [[0 for i in range(n)] for i in range(n)] tmp = [0 for i in range(n)] for i in range(n): for j in range(n): imos[0][a[i][j] - 1] += max(i, j) if i >= j: tmp[a[i][j] - 1] -= 1 ans = imos[0] # print(tmp) for i in range(1, n): imos[i] = deepcopy(imos[i - 1]) 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 # print(tmp) for j in range(n): imos[i][j] = tmp[j] + imos[i - 1][j] for j in range(n): ans[j] = min(imos[i][j], ans[j]) print(sum(ans))