結果

問題 No.1336 Union on Blackboard
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-01-15 21:42:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 11,163 ms
コンパイル使用メモリ 435,932 KB
実行使用メモリ 60,684 KB
最終ジャッジ日時 2024-05-04 23:10:34
合計ジャッジ時間 26,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
51,484 KB
testcase_01 AC 452 ms
56,180 KB
testcase_02 AC 448 ms
56,244 KB
testcase_03 AC 456 ms
56,252 KB
testcase_04 AC 461 ms
56,176 KB
testcase_05 AC 457 ms
55,948 KB
testcase_06 AC 455 ms
56,140 KB
testcase_07 AC 451 ms
55,980 KB
testcase_08 AC 439 ms
56,328 KB
testcase_09 AC 519 ms
56,348 KB
testcase_10 AC 469 ms
59,896 KB
testcase_11 AC 467 ms
60,072 KB
testcase_12 AC 461 ms
60,112 KB
testcase_13 AC 460 ms
59,956 KB
testcase_14 AC 497 ms
60,684 KB
testcase_15 AC 470 ms
60,508 KB
testcase_16 AC 495 ms
59,944 KB
testcase_17 AC 491 ms
60,172 KB
testcase_18 AC 450 ms
60,192 KB
testcase_19 AC 463 ms
59,996 KB
testcase_20 AC 486 ms
60,048 KB
testcase_21 AC 463 ms
60,012 KB
testcase_22 AC 461 ms
60,112 KB
testcase_23 AC 466 ms
60,152 KB
testcase_24 AC 475 ms
59,960 KB
testcase_25 AC 459 ms
60,160 KB
testcase_26 AC 463 ms
59,976 KB
testcase_27 AC 449 ms
60,196 KB
testcase_28 AC 465 ms
59,836 KB
testcase_29 AC 465 ms
60,308 KB
testcase_30 AC 318 ms
51,468 KB
testcase_31 AC 319 ms
51,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

import java.util.*

class Main(private val args : Array<String>) : Runnable {
    override fun run() {
        solve(args)
    }
    private fun solve(@Suppress("UNUSED_PARAMETER") args: Array<String>) {
        Scanner(System.`in`).use { sc ->
            val T = sc.nextInt()
            repeat(T) {
                val N = sc.nextInt()
                val A = IntArray(N){sc.nextInt()}
                val MOD = 1_000_000_007
                var ans = A.fold(1){l, r -> (l.toLong() * (r + 1) % MOD).toInt()} - 1
                if (ans < 0) ans += MOD
                println(ans)
            }
        }
    }
}

/** 確保するメモリの大きさ(単位: MB)  */
private const val MEMORY: Long = 64

fun main(args: Array<String>) {
    Thread.setDefaultUncaughtExceptionHandler { _: Thread?, e: Throwable ->
        e.printStackTrace()
        System.exit(1)
    }
    Thread(null, Main(args = args), "", MEMORY * 1048576L).start()
}
0