結果

問題 No.1058 素敵な数
ユーザー yakamotoyakamoto
提出日時 2020-05-22 21:33:35
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 2,803 bytes
コンパイル時間 15,841 ms
コンパイル使用メモリ 465,052 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-04-15 16:08:41
合計ジャッジ時間 19,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
54,540 KB
testcase_01 AC 320 ms
54,452 KB
testcase_02 AC 330 ms
54,452 KB
testcase_03 AC 324 ms
54,308 KB
testcase_04 AC 327 ms
54,480 KB
testcase_05 AC 327 ms
54,296 KB
testcase_06 AC 325 ms
54,484 KB
testcase_07 AC 330 ms
54,200 KB
testcase_08 AC 330 ms
54,460 KB
testcase_09 AC 332 ms
54,444 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_007L

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val MAX = 100_000 + 200
    val flg = BooleanArray(MAX + 1)
    val p = mutableListOf<Int>()
    for (i in 2 .. MAX) {
      if (!flg[i]) {
        var j = i * 2
        while(j <= MAX) {
          flg[j] = true
          j += i
        }
        if (i > 100_000) p.add(i)
      }
    }
    debug{p.joinToString(" ")}
    val nums = mutableSetOf<Long>()
    for (i in p) {
      for (j in p) {
        nums += i.toLong() * j
      }
    }
    nums += 1
    debug{nums.toString()}
    val ans = nums.sorted()
    out.println(ans[N - 1])
  }













































  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) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun map(n: Int, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i)
    }
    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<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

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

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