結果
問題 | No.1885 Flat Permutation |
ユーザー | 箱星 |
提出日時 | 2022-09-11 19:16:41 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 1,201 ms / 2,000 ms |
コード長 | 3,299 bytes |
コンパイル時間 | 17,915 ms |
コンパイル使用メモリ | 448,964 KB |
実行使用メモリ | 107,408 KB |
最終ジャッジ日時 | 2024-05-06 05:27:21 |
合計ジャッジ時間 | 44,456 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 266 ms
49,780 KB |
testcase_01 | AC | 264 ms
49,896 KB |
testcase_02 | AC | 261 ms
49,908 KB |
testcase_03 | AC | 326 ms
54,480 KB |
testcase_04 | AC | 275 ms
50,100 KB |
testcase_05 | AC | 271 ms
49,820 KB |
testcase_06 | AC | 260 ms
49,748 KB |
testcase_07 | AC | 261 ms
49,904 KB |
testcase_08 | AC | 268 ms
49,704 KB |
testcase_09 | AC | 267 ms
50,112 KB |
testcase_10 | AC | 265 ms
50,000 KB |
testcase_11 | AC | 265 ms
49,956 KB |
testcase_12 | AC | 258 ms
49,820 KB |
testcase_13 | AC | 256 ms
49,800 KB |
testcase_14 | AC | 271 ms
49,804 KB |
testcase_15 | AC | 263 ms
49,868 KB |
testcase_16 | AC | 283 ms
49,924 KB |
testcase_17 | AC | 260 ms
49,840 KB |
testcase_18 | AC | 273 ms
49,988 KB |
testcase_19 | AC | 1,138 ms
107,312 KB |
testcase_20 | AC | 1,153 ms
107,408 KB |
testcase_21 | AC | 1,159 ms
107,108 KB |
testcase_22 | AC | 1,050 ms
85,212 KB |
testcase_23 | AC | 270 ms
49,964 KB |
testcase_24 | AC | 266 ms
49,900 KB |
testcase_25 | AC | 274 ms
49,988 KB |
testcase_26 | AC | 258 ms
49,992 KB |
testcase_27 | AC | 1,189 ms
107,364 KB |
testcase_28 | AC | 1,168 ms
107,380 KB |
testcase_29 | AC | 1,142 ms
107,248 KB |
testcase_30 | AC | 1,127 ms
107,148 KB |
testcase_31 | AC | 1,126 ms
107,168 KB |
testcase_32 | AC | 255 ms
49,836 KB |
testcase_33 | AC | 254 ms
49,940 KB |
testcase_34 | AC | 251 ms
49,904 KB |
testcase_35 | AC | 1,201 ms
107,308 KB |
testcase_36 | AC | 1,163 ms
107,176 KB |
testcase_37 | AC | 260 ms
49,884 KB |
testcase_38 | AC | 254 ms
49,812 KB |
testcase_39 | AC | 261 ms
49,984 KB |
testcase_40 | AC | 451 ms
59,608 KB |
testcase_41 | AC | 631 ms
68,272 KB |
testcase_42 | AC | 359 ms
56,104 KB |
testcase_43 | AC | 1,183 ms
107,220 KB |
testcase_44 | AC | 1,146 ms
107,240 KB |
testcase_45 | AC | 1,141 ms
107,192 KB |
testcase_46 | AC | 1,159 ms
107,208 KB |
ソースコード
import java.io.PrintWriter import java.util.* import kotlin.math.* fun PrintWriter.solve() { val n = nextInt() val _x = nextInt() val _y = nextInt() val x = minOf(_x, _y) val y = maxOf(_x, _y) val a = if (x == 1) 1 else x + 1 val b = if (y == n) n else y - 1 val l = b - a val memo = mutableMapOf<Int, ModInt>() fun f(l: Int): ModInt { if (l < 0) { return ModInt(0) } if (l <= 2) { return ModInt(1) } if (memo.containsKey(l)) { return memo[l]!! } val ret = f(l - 1) + f(l - 3) memo[l] = ret return ret } println(f(l)) } // region ModInt class ModInt(x: Long) { companion object { const val MOD = 998244353L //const val MOD = 1000000007L } 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" } } class ModIntArray(n: Int) { private val a = LongArray(n) { 0L } constructor(n: Int, init: (Int) -> ModInt) : this(n) { for (i in 0 until n) { a[i] = init(i).x } } operator fun set(i: Int, x: ModInt) { a[i] = x.x } operator fun get(i: Int): ModInt { return ModInt(a[i]) } fun joinToString(s: String = ", "): String { return a.joinToString(s) } } fun Long.toModInt() = ModInt(this) fun Int.toModInt() = ModInt(this) fun binomSimple(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 fun main() { Thread(null, { val writer = PrintWriter(System.out, false) writer.solve() writer.flush() }, "solve", abs(1L.shl(26))) .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } } .apply { start() }.join() } // region Scanner private var st = StringTokenizer("") private val br = System.`in`.bufferedReader() fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine() fun nextDouble() = next().toDouble() // endregion