結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー ImTabooImTaboo
提出日時 2024-10-26 15:08:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 19,261 ms
コンパイル使用メモリ 430,996 KB
実行使用メモリ 94,892 KB
最終ジャッジ日時 2024-10-26 15:09:13
合計ジャッジ時間 29,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
60,324 KB
testcase_01 AC 310 ms
94,892 KB
testcase_02 AC 310 ms
56,948 KB
testcase_03 AC 319 ms
57,100 KB
testcase_04 AC 326 ms
56,952 KB
testcase_05 AC 313 ms
56,992 KB
testcase_06 AC 311 ms
56,904 KB
testcase_07 AC 319 ms
56,964 KB
testcase_08 AC 327 ms
56,984 KB
testcase_09 AC 317 ms
57,072 KB
testcase_10 AC 312 ms
57,060 KB
testcase_11 AC 329 ms
56,984 KB
testcase_12 AC 317 ms
56,972 KB
testcase_13 AC 313 ms
56,944 KB
testcase_14 AC 316 ms
57,124 KB
testcase_15 AC 337 ms
56,824 KB
testcase_16 AC 316 ms
56,988 KB
testcase_17 AC 314 ms
56,964 KB
testcase_18 AC 315 ms
56,812 KB
testcase_19 AC 326 ms
57,116 KB
testcase_20 AC 324 ms
57,136 KB
testcase_21 AC 317 ms
57,064 KB
04_evil.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

//https://yukicoder.me/problems/no/2938

fun main(){
    val n = readln().toInt()
    val a = readln().split(" ").map { it.toInt()}
    var z: Int


    var ans: Int = 0
    fun ab(x: Int, y: Int): Int {
        if (x >= y){
            z = x-y
        }else z = y-x
        return z
    }

    for (i in 0..<n){
        for (j in 0..<n)
            ans = ans + (ab(i,j) * ab(a[i],a[j]))
    }
    println(ans)
}
0