結果

問題 No.979 Longest Divisor Sequence
ユーザー yakamotoyakamoto
提出日時 2020-02-02 23:54:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,178 ms / 2,000 ms
コード長 2,604 bytes
コンパイル時間 16,044 ms
コンパイル使用メモリ 449,608 KB
実行使用メモリ 63,380 KB
最終ジャッジ日時 2023-10-19 01:35:04
合計ジャッジ時間 24,105 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
58,300 KB
testcase_01 AC 326 ms
58,308 KB
testcase_02 AC 332 ms
58,312 KB
testcase_03 AC 327 ms
58,316 KB
testcase_04 AC 325 ms
58,304 KB
testcase_05 AC 325 ms
58,316 KB
testcase_06 AC 327 ms
58,312 KB
testcase_07 AC 331 ms
58,308 KB
testcase_08 AC 327 ms
58,308 KB
testcase_09 AC 330 ms
58,316 KB
testcase_10 AC 373 ms
58,408 KB
testcase_11 AC 390 ms
58,416 KB
testcase_12 AC 388 ms
58,440 KB
testcase_13 AC 534 ms
63,260 KB
testcase_14 AC 1,178 ms
63,380 KB
testcase_15 AC 778 ms
61,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val A = na(N)
    val MAX = if (isDebug) 9 else 300_000
    val D = IntArray(MAX + 1)
    for (i in 0 until N) {
      var mx = 1
      val div = divisors(A[i])
      for (j in 0 until div.size) {
        val d = div[j]
        if (d == A[i]) continue
        mx = max(mx, D[d] + 1)
      }
      D[A[i]] = mx
    }

    debug(D)
    out.println(D.max())
  }

  fun divisors(x: Int): MutableList<Int> {
    val res = mutableListOf<Int>()
    var d = 1
    while (d * d <= x) {
      if (x % d == 0) {
        res += d
        if (d * d != x) res += x / d
      }
      ++d
    }
    return res
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return map(n, offset) { ni() }
  }

  private inline fun map(n: Int, offset: Int = 0, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i + offset)
    }
    return res
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: BooleanArray) {
    debug { a.map { if (it) 1 else 0 }.joinToString("") }
  }

  private fun debugDim(A: Array<LongArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

fun <A, B> pair(a: A, b: B) = RPair(a, b)
data class RPair<A, B>(val _1: A, val _2: B)

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0