結果

問題 No.933 おまわりさんこいつです
ユーザー rutilicusrutilicus
提出日時 2021-02-13 21:55:23
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 14,816 ms
コンパイル使用メモリ 436,576 KB
実行使用メモリ 69,416 KB
最終ジャッジ日時 2024-07-21 01:59:02
合計ジャッジ時間 21,861 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
51,640 KB
testcase_01 AC 262 ms
51,852 KB
testcase_02 AC 260 ms
51,940 KB
testcase_03 AC 261 ms
51,692 KB
testcase_04 AC 265 ms
51,824 KB
testcase_05 AC 274 ms
51,776 KB
testcase_06 AC 275 ms
51,752 KB
testcase_07 AC 275 ms
51,996 KB
testcase_08 AC 275 ms
51,588 KB
testcase_09 AC 282 ms
51,684 KB
testcase_10 AC 288 ms
51,972 KB
testcase_11 AC 292 ms
52,000 KB
testcase_12 AC 291 ms
51,788 KB
testcase_13 AC 314 ms
52,228 KB
testcase_14 AC 340 ms
52,400 KB
testcase_15 AC 347 ms
53,100 KB
testcase_16 AC 411 ms
57,292 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 434 ms
62,112 KB
testcase_21 AC 286 ms
51,864 KB
testcase_22 AC 262 ms
51,704 KB
testcase_23 AC 473 ms
69,308 KB
testcase_24 AC 622 ms
69,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

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

    builder.appendLine(pArr.fold(1L) { acc, l -> root(acc * l)})

    print(builder.toString())
}

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

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