結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー 箱星箱星
提出日時 2021-01-22 23:48:28
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,251 bytes
コンパイル時間 12,902 ms
コンパイル使用メモリ 449,808 KB
実行使用メモリ 119,892 KB
最終ジャッジ日時 2024-06-09 04:19:28
合計ジャッジ時間 133,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
56,896 KB
testcase_01 AC 268 ms
57,964 KB
testcase_02 AC 266 ms
57,980 KB
testcase_03 AC 1,497 ms
94,924 KB
testcase_04 AC 1,511 ms
91,796 KB
testcase_05 AC 1,479 ms
92,668 KB
testcase_06 AC 1,472 ms
92,504 KB
testcase_07 AC 1,741 ms
107,436 KB
testcase_08 AC 1,855 ms
107,760 KB
testcase_09 AC 797 ms
79,224 KB
testcase_10 AC 798 ms
79,576 KB
testcase_11 TLE -
testcase_12 AC 1,896 ms
109,240 KB
testcase_13 AC 1,564 ms
104,728 KB
testcase_14 AC 1,721 ms
104,488 KB
testcase_15 AC 1,320 ms
91,816 KB
testcase_16 AC 1,357 ms
92,148 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,930 ms
108,948 KB
testcase_20 AC 1,998 ms
109,332 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1,707 ms
105,624 KB
testcase_24 AC 1,635 ms
106,048 KB
testcase_25 AC 601 ms
68,096 KB
testcase_26 AC 627 ms
67,640 KB
testcase_27 AC 1,004 ms
93,016 KB
testcase_28 AC 1,002 ms
92,540 KB
testcase_29 AC 1,054 ms
92,036 KB
testcase_30 AC 1,065 ms
92,032 KB
testcase_31 AC 1,456 ms
94,704 KB
testcase_32 AC 1,416 ms
98,520 KB
testcase_33 AC 1,123 ms
91,896 KB
testcase_34 AC 1,127 ms
94,796 KB
testcase_35 AC 1,367 ms
92,008 KB
testcase_36 AC 1,366 ms
98,004 KB
testcase_37 AC 638 ms
68,772 KB
testcase_38 AC 622 ms
69,056 KB
testcase_39 AC 578 ms
65,612 KB
testcase_40 AC 585 ms
65,996 KB
testcase_41 AC 832 ms
78,604 KB
testcase_42 AC 740 ms
77,616 KB
testcase_43 AC 734 ms
74,820 KB
testcase_44 TLE -
testcase_45 AC 1,194 ms
95,068 KB
testcase_46 AC 709 ms
73,752 KB
testcase_47 AC 1,797 ms
115,148 KB
testcase_48 AC 1,643 ms
106,812 KB
testcase_49 AC 1,707 ms
107,748 KB
testcase_50 AC 1,411 ms
92,692 KB
testcase_51 AC 459 ms
58,448 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 1,938 ms
119,468 KB
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 AC 1,954 ms
119,524 KB
testcase_71 AC 1,984 ms
119,688 KB
testcase_72 TLE -
testcase_73 TLE -
testcase_74 AC 1,920 ms
119,892 KB
testcase_75 TLE -
testcase_76 AC 1,964 ms
119,440 KB
testcase_77 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:28:26: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
        val d = arr.max()!! - arr.min()!!
                         ^
Main.kt:28:40: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
        val d = arr.max()!! - arr.min()!!
                                       ^

ソースコード

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 = Array(n) { nextLong() }
    val e = Array(n) { nextLong() }
    val a = Array(n) { nextLong() }
    val h = Array(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.max()!! - arr.min()!!
        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