結果
問題 | No.1028 闇討ち |
ユーザー | konchanksu |
提出日時 | 2020-04-20 16:57:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 26,016 KB |
最終ジャッジ日時 | 2024-10-06 09:02:56 |
合計ジャッジ時間 | 8,718 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,824 KB |
testcase_01 | AC | 30 ms
11,008 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 28 ms
11,008 KB |
testcase_04 | AC | 27 ms
11,008 KB |
testcase_05 | AC | 36 ms
11,136 KB |
testcase_06 | AC | 53 ms
11,008 KB |
testcase_07 | AC | 30 ms
11,008 KB |
testcase_08 | AC | 33 ms
11,008 KB |
testcase_09 | AC | 1,472 ms
12,800 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
from copy import deepcopy 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)] for i in range(n): for j in range(n): imos[0][a[i][j] - 1] += max(i, j) ans = imos[0] for i in range(1, n): imos[i] = deepcopy(imos[i - 1]) for j in range(n): for k in range(n): if j - i < 0 and abs(j - i) <= k: break if j - i >= 0 and abs(j - i) < k: break if j - i < 0: imos[i][a[j][k] - 1] += 1 else: imos[i][a[j][k] - 1] -= 1 for j in range(n): ans[j] = min(imos[i][j], ans[j]) print(sum(ans))