結果

問題 No.1632 Sorting Integers (GCD of M)
ユーザー yakamotoyakamoto
提出日時 2021-07-30 22:58:30
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 3,465 bytes
コンパイル時間 19,440 ms
コンパイル使用メモリ 437,028 KB
実行使用メモリ 58,300 KB
最終ジャッジ日時 2023-10-14 07:45:10
合計ジャッジ時間 43,764 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
53,744 KB
testcase_01 AC 292 ms
53,968 KB
testcase_02 AC 289 ms
53,676 KB
testcase_03 AC 295 ms
53,840 KB
testcase_04 AC 292 ms
53,760 KB
testcase_05 AC 289 ms
53,700 KB
testcase_06 AC 294 ms
53,776 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 289 ms
53,800 KB
testcase_12 AC 290 ms
53,780 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 287 ms
53,792 KB
testcase_17 WA -
testcase_18 AC 305 ms
54,036 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 294 ms
53,800 KB
testcase_34 WA -
testcase_35 AC 289 ms
54,040 KB
testcase_36 AC 293 ms
53,920 KB
testcase_37 WA -
testcase_38 AC 292 ms
53,904 KB
testcase_39 WA -
testcase_40 AC 289 ms
53,744 KB
testcase_41 AC 291 ms
53,920 KB
testcase_42 AC 295 ms
53,832 KB
testcase_43 WA -
testcase_44 AC 298 ms
53,928 KB
testcase_45 AC 293 ms
53,804 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 289 ms
53,796 KB
testcase_51 AC 289 ms
53,832 KB
testcase_52 AC 291 ms
53,912 KB
testcase_53 AC 294 ms
53,748 KB
testcase_54 AC 292 ms
53,740 KB
testcase_55 AC 293 ms
53,780 KB
testcase_56 AC 297 ms
53,920 KB
testcase_57 AC 296 ms
53,980 KB
testcase_58 AC 292 ms
53,788 KB
testcase_59 TLE -
testcase_60 TLE -
testcase_61 WA -
testcase_62 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:133:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: LongArray) {
          ^
Main.kt:137:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: IntArray) {
          ^
Main.kt:141:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: BooleanArray) {
          ^
Main.kt:145:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun toString(a: BooleanArray) = run{a.map { if (it) 1 else 0 }.joinToString("")}
          ^
Main.kt:147:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<LongArray>) {
          ^
Main.kt:154:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<IntArray>) {
          ^
Main.kt:161:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<BooleanArray>) {
          ^
Main.kt:178:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun assert(b: Boolean) = run{if (!b) throw AssertionError()}
          ^

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.lang.AssertionError
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) {
  private val reader = BufferedReader(InputStreamReader(stream), 32768)

  fun solve() {
    val N = ni()
    val C = intArrayOf(0) + na(9)

    if (C.count { it > 0 } == 1) {
      var ten = 1L
      var ans = 0L
      val d = C.indexOfFirst { it > 0 }
      for (i in 0 until N) {
        ans += d*ten
        ten = ten *10%MOD
      }
      out.println(ans)
      return
    }

    var sum = 0L
    for (d in 1 until 10) {
      sum += C[d]*d
    }

    when {
      sum % 9 == 0L -> out.println(9)
      sum % 3 == 0L -> out.println(3)
      else -> out.println(1)
    }
  }













































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

  private var tokenizer: StringTokenizer? = null
  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 IntArray(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 debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  /**
   * コーナーケースでエラー出たりするので、debug(dp[1])のように添え字付きの場合はdebug{}をつかうこと
   */
  private inline fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

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

  private inline fun debug(a: BooleanArray) {
    debug { toString(a) }
  }

  private inline fun toString(a: BooleanArray) = run{a.map { if (it) 1 else 0 }.joinToString("")}

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

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

  private inline fun assert(b: Boolean) = run{if (!b) throw AssertionError()}
  private inline fun assert(b: Boolean, f: () -> String) = run{if (!b) throw AssertionError(f())}

  companion object {
    // TestRunnerから呼びたいので単純なmainじゃだめ
    fun main() {
      val out = java.io.PrintWriter(System.out)
      Solver(System.`in`, out).solve()
      out.flush()
    }
  }
}

/**
 * judgeから呼ばれる
 */
fun main() = Solver.main()
0