結果

問題 No.933 おまわりさんこいつです
ユーザー rutilicusrutilicus
提出日時 2021-02-13 22:02:14
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 14,063 ms
コンパイル使用メモリ 428,180 KB
実行使用メモリ 70,860 KB
最終ジャッジ日時 2024-07-21 02:07:14
合計ジャッジ時間 21,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
51,468 KB
testcase_01 AC 272 ms
51,756 KB
testcase_02 AC 283 ms
51,684 KB
testcase_03 AC 268 ms
51,616 KB
testcase_04 AC 309 ms
51,628 KB
testcase_05 AC 271 ms
51,752 KB
testcase_06 AC 271 ms
51,700 KB
testcase_07 AC 272 ms
51,616 KB
testcase_08 AC 283 ms
51,716 KB
testcase_09 AC 279 ms
51,648 KB
testcase_10 AC 274 ms
51,668 KB
testcase_11 AC 286 ms
51,840 KB
testcase_12 AC 289 ms
51,824 KB
testcase_13 AC 330 ms
52,320 KB
testcase_14 AC 331 ms
52,376 KB
testcase_15 AC 363 ms
53,060 KB
testcase_16 AC 432 ms
57,960 KB
testcase_17 AC 448 ms
62,828 KB
testcase_18 AC 310 ms
51,628 KB
testcase_19 AC 460 ms
64,580 KB
testcase_20 AC 477 ms
61,168 KB
testcase_21 AC 266 ms
51,596 KB
testcase_22 AC 275 ms
51,684 KB
testcase_23 AC 513 ms
70,860 KB
testcase_24 AC 496 ms
70,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    readInputLine()
    val pArr = readInputLine().split(" ").map { it.toLong() }

    if (pArr.contains(0L)) {
        builder.appendLine(0)
    } else {
        builder.appendLine(pArr.fold(1L) { acc, l -> root(acc * (l % 9L)) })
    }

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}

fun root(a: Long): Long {
    return if (a % 9L != 0L) a % 9L else 9L
}
0