結果
問題 | No.1516 simple 門松列 problem Re:MASTER |
ユーザー | 👑 rin204 |
提出日時 | 2022-01-28 20:57:05 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,960 ms / 6,000 ms |
コード長 | 2,257 bytes |
コンパイル時間 | 577 ms |
コンパイル使用メモリ | 81,900 KB |
実行使用メモリ | 100,888 KB |
最終ジャッジ日時 | 2024-12-30 03:09:29 |
合計ジャッジ時間 | 15,639 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
54,656 KB |
testcase_01 | AC | 189 ms
77,520 KB |
testcase_02 | AC | 1,489 ms
89,092 KB |
testcase_03 | AC | 65 ms
67,776 KB |
testcase_04 | AC | 62 ms
66,960 KB |
testcase_05 | AC | 70 ms
68,452 KB |
testcase_06 | AC | 110 ms
77,288 KB |
testcase_07 | AC | 183 ms
77,100 KB |
testcase_08 | AC | 334 ms
78,872 KB |
testcase_09 | AC | 53 ms
61,572 KB |
testcase_10 | AC | 90 ms
70,656 KB |
testcase_11 | AC | 62 ms
65,396 KB |
testcase_12 | AC | 63 ms
66,136 KB |
testcase_13 | AC | 59 ms
64,532 KB |
testcase_14 | AC | 2,722 ms
100,888 KB |
testcase_15 | AC | 1,227 ms
87,884 KB |
testcase_16 | AC | 577 ms
79,376 KB |
testcase_17 | AC | 232 ms
77,312 KB |
testcase_18 | AC | 124 ms
77,176 KB |
testcase_19 | AC | 96 ms
76,960 KB |
testcase_20 | AC | 2,627 ms
100,484 KB |
testcase_21 | AC | 2,960 ms
99,900 KB |
ソースコード
from copy import deepcopy MOD = 998244353 n, k = map(int, input().split()) k2 = 2 * k * k A = [[0] * k2 for _ in range(k2)] B = [0] * k2 f = lambda x, y: x * k + y for i in range(k): for j in range(i + 1, k): p = 2 * f(i, j) B[p] += 1 B[p + 1] += i + j for i2 in range(j): if i2 == i: continue for j2 in range(i2 + 1, k): if j2 == j: continue p2 = 2 * f(i2, j2) A[p2][p] += 1 A[p2 + 1][p] += i2 + j2 A[p2 + 1][p + 1] += 1 for i in range(k): for j in range(i): p = 2 * f(i, j) B[p] += 1 B[p + 1] += i + j for i2 in range(j + 1, k): if i2 == i: continue for j2 in range(i2): if j2 == j: continue p2 = 2 * f(i2, j2) A[p2][p] += 1 A[p2 + 1][p] += i2 + j2 A[p2 + 1][p + 1] += 1 A[-1][-1] = 1 t = n // 2 - 1 while t: if t & 1: C = [0] * k2 for i in range(k2): for j in range(k2): C[i] += A[i][j] * B[j] C[i] %= MOD B = C.copy() t >>= 1 C = [[0] * k2 for _ in range(k2)] for i in range(k2): for j in range(k2): for l in range(k2): C[i][j] += A[i][l] * A[l][j] C[i][j] %= MOD A = deepcopy(C) if n % 2 == 0: cnt = 0 tot = 0 for i, b in enumerate(B): if i % 2 == 0: cnt += b cnt %= MOD else: tot += b tot %= MOD print(cnt, tot) else: cnt = 0 tot = 0 for i in range(k): for j in range(k): p = 2 * f(i, j) if i < j: for l in range(j): if i != l: cnt += B[p] tot += B[p] * l + B[p + 1] else: for l in range(j + 1, k): if i != l: cnt += B[p] tot += B[p] * l + B[p + 1] cnt %= MOD tot %= MOD print(cnt, tot)