結果
問題 | No.515 典型LCP |
ユーザー | matsu7874 |
提出日時 | 2017-05-05 22:43:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 752 bytes |
コンパイル時間 | 98 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 353,856 KB |
最終ジャッジ日時 | 2024-09-14 08:53:42 |
合計ジャッジ時間 | 4,638 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
def gen_query(n, m, x, d): queries = [] for k in range(m): i = (x // (n-1)) j = (x % (n-1)) if i > j: i, j = j, i else: j += 1 x = (x+d) % (n * (n-1)) queries.append((i, j)) return queries def lcp(a,b): size_a = len(a) size_b = len(b) size = min(size_a, size_b) for i in range(size): if a[i] != b[i]: return i return size def main(): n = int(input()) s = [] for i in range(n): s.append(input().strip()) m, x, d = map(int, input().split()) query = gen_query(n, m, x, d) total = 0 for i, j in query: total += lcp(s[i], s[j]) print(total) if __name__ == '__main__': main()