結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー 箱星箱星
提出日時 2021-09-09 22:41:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,579 ms / 2,000 ms
コード長 1,279 bytes
コンパイル時間 14,710 ms
コンパイル使用メモリ 443,064 KB
実行使用メモリ 103,640 KB
最終ジャッジ日時 2024-06-25 15:40:22
合計ジャッジ時間 113,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
53,300 KB
testcase_01 AC 321 ms
53,236 KB
testcase_02 AC 326 ms
53,428 KB
testcase_03 AC 1,086 ms
88,932 KB
testcase_04 AC 1,297 ms
90,288 KB
testcase_05 AC 1,153 ms
88,768 KB
testcase_06 AC 1,159 ms
88,820 KB
testcase_07 AC 1,216 ms
95,564 KB
testcase_08 AC 1,311 ms
95,744 KB
testcase_09 AC 801 ms
78,784 KB
testcase_10 AC 842 ms
78,748 KB
testcase_11 AC 1,547 ms
97,024 KB
testcase_12 AC 1,318 ms
96,128 KB
testcase_13 AC 1,179 ms
95,616 KB
testcase_14 AC 1,150 ms
95,840 KB
testcase_15 AC 1,092 ms
88,780 KB
testcase_16 AC 1,054 ms
89,072 KB
testcase_17 AC 1,421 ms
99,740 KB
testcase_18 AC 1,330 ms
99,472 KB
testcase_19 AC 1,436 ms
96,700 KB
testcase_20 AC 1,349 ms
96,740 KB
testcase_21 AC 1,384 ms
97,180 KB
testcase_22 AC 1,316 ms
97,288 KB
testcase_23 AC 1,312 ms
93,464 KB
testcase_24 AC 1,187 ms
94,896 KB
testcase_25 AC 645 ms
67,392 KB
testcase_26 AC 637 ms
67,448 KB
testcase_27 AC 951 ms
88,532 KB
testcase_28 AC 927 ms
88,208 KB
testcase_29 AC 1,081 ms
88,788 KB
testcase_30 AC 1,239 ms
88,784 KB
testcase_31 AC 1,176 ms
89,116 KB
testcase_32 AC 1,109 ms
89,012 KB
testcase_33 AC 976 ms
88,688 KB
testcase_34 AC 974 ms
88,400 KB
testcase_35 AC 1,099 ms
88,264 KB
testcase_36 AC 1,174 ms
87,860 KB
testcase_37 AC 645 ms
68,360 KB
testcase_38 AC 648 ms
68,592 KB
testcase_39 AC 597 ms
65,476 KB
testcase_40 AC 594 ms
65,280 KB
testcase_41 AC 779 ms
77,276 KB
testcase_42 AC 844 ms
79,712 KB
testcase_43 AC 768 ms
74,404 KB
testcase_44 AC 1,390 ms
101,116 KB
testcase_45 AC 971 ms
88,952 KB
testcase_46 AC 689 ms
73,472 KB
testcase_47 AC 1,346 ms
94,840 KB
testcase_48 AC 1,164 ms
95,044 KB
testcase_49 AC 1,166 ms
95,236 KB
testcase_50 AC 1,009 ms
88,812 KB
testcase_51 AC 526 ms
58,284 KB
testcase_52 AC 1,379 ms
98,572 KB
testcase_53 AC 1,511 ms
102,552 KB
testcase_54 AC 1,579 ms
102,556 KB
testcase_55 AC 1,311 ms
103,364 KB
testcase_56 AC 1,365 ms
102,652 KB
testcase_57 AC 1,414 ms
103,224 KB
testcase_58 AC 1,289 ms
102,432 KB
testcase_59 AC 1,414 ms
102,548 KB
testcase_60 AC 1,359 ms
102,580 KB
testcase_61 AC 1,325 ms
102,636 KB
testcase_62 AC 1,372 ms
103,332 KB
testcase_63 AC 1,340 ms
103,380 KB
testcase_64 AC 1,342 ms
103,348 KB
testcase_65 AC 1,459 ms
103,508 KB
testcase_66 AC 1,402 ms
103,368 KB
testcase_67 AC 1,391 ms
102,276 KB
testcase_68 AC 1,348 ms
103,640 KB
testcase_69 AC 1,319 ms
102,556 KB
testcase_70 AC 1,336 ms
103,532 KB
testcase_71 AC 1,282 ms
102,564 KB
testcase_72 AC 1,381 ms
102,436 KB
testcase_73 AC 1,330 ms
103,508 KB
testcase_74 AC 1,399 ms
103,460 KB
testcase_75 AC 1,569 ms
102,524 KB
testcase_76 AC 1,381 ms
103,180 KB
testcase_77 AC 1,407 ms
103,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun modpow(a: Long, e: Long, m: Long): Long {
    if (e == 0L) return 1 % m
    if (e == 1L) return a % m
    val b = modpow(a, e / 2, m)
    if (e % 2 == 0L) return b * b % m
    else return (b * b % m) * a % m
}

fun PrintWriter.solve() {
    val n = nextInt()
    val k = nextLong()
    val m = nextLong()
    val p = LongArray(n) { nextLong() }
    val e = LongArray(n) { nextLong() }
    val a = LongArray(n) { nextLong() }
    val h = LongArray(n) { nextLong() }
    p.sort()
    e.sort()
    a.sort()
    h.sort()
    var ans = 0L
    for (i in 0 until n) {
        val arr = arrayOf(p[i], e[i], a[i], h[i])
        val d = arr.maxOrNull()!! - arr.minOrNull()!!
        ans += modpow(d, k, m)
        ans %= m
    }
    println(ans)
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()!!
fun nextDouble() = next().toDouble()
// endregion
0