結果

問題 No.1447 Greedy MtSaka
ユーザー face4face4
提出日時 2021-04-07 21:31:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 12,059 ms
コンパイル使用メモリ 426,276 KB
実行使用メモリ 52,060 KB
最終ジャッジ日時 2024-06-23 01:48:44
合計ジャッジ時間 19,516 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
51,860 KB
testcase_01 AC 285 ms
51,688 KB
testcase_02 AC 276 ms
51,928 KB
testcase_03 AC 276 ms
51,948 KB
testcase_04 AC 275 ms
51,952 KB
testcase_05 AC 271 ms
52,004 KB
testcase_06 AC 272 ms
51,704 KB
testcase_07 AC 269 ms
51,944 KB
testcase_08 AC 279 ms
51,828 KB
testcase_09 AC 273 ms
52,060 KB
testcase_10 AC 272 ms
51,816 KB
testcase_11 AC 273 ms
51,812 KB
testcase_12 AC 275 ms
51,804 KB
testcase_13 AC 274 ms
51,756 KB
testcase_14 AC 273 ms
51,708 KB
testcase_15 AC 275 ms
51,956 KB
testcase_16 AC 281 ms
51,692 KB
testcase_17 AC 276 ms
51,864 KB
testcase_18 AC 285 ms
51,772 KB
testcase_19 AC 280 ms
51,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val n = readLine()!!.toInt()
    var pos = mutableListOf<Pair<Int,Int>>()
    repeat(n){
        val (x, y) = readLine()!!.split(" ").map{it.toInt()}
        pos.add(Pair(x,y))
    }
    val (x1, y1) = pos[0]
    println(pos.zipWithNext{p2, p3 -> Math.abs((x1-p3.first)*(p2.second-p3.second)-(p2.first-p3.first)*(y1-p3.second))}.sum())
}
0