結果
問題 | No.2383 Naphthol |
ユーザー | 箱星 |
提出日時 | 2023-03-02 18:08:25 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 349 ms / 2,000 ms |
コード長 | 1,971 bytes |
コンパイル時間 | 16,407 ms |
コンパイル使用メモリ | 457,432 KB |
実行使用メモリ | 72,808 KB |
最終ジャッジ日時 | 2024-09-17 12:15:14 |
合計ジャッジ時間 | 24,199 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 312 ms
56,764 KB |
testcase_01 | AC | 313 ms
56,704 KB |
testcase_02 | AC | 315 ms
53,368 KB |
testcase_03 | AC | 315 ms
51,632 KB |
testcase_04 | AC | 313 ms
51,568 KB |
testcase_05 | AC | 314 ms
51,696 KB |
testcase_06 | AC | 314 ms
51,628 KB |
testcase_07 | AC | 317 ms
51,764 KB |
testcase_08 | AC | 310 ms
51,812 KB |
testcase_09 | AC | 312 ms
51,584 KB |
testcase_10 | AC | 341 ms
63,692 KB |
testcase_11 | AC | 349 ms
72,808 KB |
testcase_12 | AC | 327 ms
59,820 KB |
testcase_13 | AC | 339 ms
62,432 KB |
testcase_14 | AC | 347 ms
68,432 KB |
testcase_15 | AC | 319 ms
53,828 KB |
testcase_16 | AC | 320 ms
56,344 KB |
testcase_17 | AC | 313 ms
52,144 KB |
testcase_18 | AC | 349 ms
68,368 KB |
testcase_19 | AC | 319 ms
53,024 KB |
testcase_20 | AC | 349 ms
69,812 KB |
ソースコード
fun main() { val (n, k) = readln().split(" ").map { it.toInt() } if (n == 1) { println(arrayOf(1, 1, 3, 3, 3, 1, 1)[k]) return } var ans = binom(2 * n + 4L, k.toLong()) if (n % 2 == 0 && k % 2 == 0) { ans += ModInt(3) * binom(n + 2L, k / 2L) } else if (n % 2 != 0 && k % 2 == 0) { ans += binom(n + 1L, k / 2L) + binom(n + 1L, (k - 2) / 2L) + ModInt(2) * binom(n + 2L, k / 2L) } else if (n % 2 != 0 && k % 2 != 0) { ans += ModInt(2) * binom(n + 1L, (k - 1) / 2L) } ans /= ModInt(4) println(ans) } // region ModInt class ModInt(x: Long) { companion object { const val MOD = 998244353L } constructor(y: Int) : this(y.toLong()) val x = (x % MOD + MOD) % MOD operator fun plus(other: ModInt): ModInt { return ModInt(x + other.x) } operator fun minus(other: ModInt): ModInt { return ModInt(x - other.x) } operator fun times(other: ModInt): ModInt { return ModInt(x * other.x) } operator fun div(other: ModInt): ModInt { return this * other.inv() } fun pow(exp: Long): ModInt { if (exp == 0L) return ModInt(1L) var a = pow(exp shr 1) a *= a if (exp and 1L == 0L) return a return this * a } fun inv(): ModInt { return this.pow(MOD - 2) } override fun equals(other: Any?): Boolean { if (this === other) return true if (javaClass != other?.javaClass) return false other as ModInt if (x != other.x) return false return true } override fun hashCode(): Int { return x.hashCode() } override fun toString(): String { return "$x" } } fun binom(n: Long, k: Long): ModInt { var numer = ModInt(1) var denom = ModInt(1) for (i in 0 until k) { numer *= ModInt(n - i) denom *= ModInt(k - i) } return numer / denom } // endregion