結果

問題 No.1081 和の和
ユーザー face4face4
提出日時 2021-04-11 15:12:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 11,296 ms
コンパイル使用メモリ 427,036 KB
実行使用メモリ 52,052 KB
最終ジャッジ日時 2024-06-27 10:16:07
合計ジャッジ時間 15,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
51,476 KB
testcase_01 AC 299 ms
51,456 KB
testcase_02 AC 299 ms
51,604 KB
testcase_03 AC 302 ms
51,636 KB
testcase_04 AC 308 ms
51,788 KB
testcase_05 AC 302 ms
51,556 KB
testcase_06 AC 308 ms
51,568 KB
testcase_07 AC 309 ms
51,900 KB
testcase_08 AC 310 ms
52,052 KB
testcase_09 AC 314 ms
51,792 KB
testcase_10 AC 306 ms
51,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const val mod = 1000000007
fun main() {
    val n = readLine()!!.toInt()
    var a = readLine()!!.split(" ").map{it.toInt()}
    repeat(n-1){
        a = a.zipWithNext{a, b -> (a+b)%mod}
    }
    println(a[0])
}
0