結果

問題 No.693 square1001 and Permutation 2
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-14 23:46:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 11,593 ms
コンパイル使用メモリ 433,604 KB
実行使用メモリ 55,316 KB
最終ジャッジ日時 2024-11-20 16:20:59
合計ジャッジ時間 16,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
55,068 KB
testcase_01 AC 337 ms
55,156 KB
testcase_02 AC 330 ms
55,152 KB
testcase_03 AC 336 ms
54,972 KB
testcase_04 AC 336 ms
55,316 KB
testcase_05 AC 318 ms
51,952 KB
testcase_06 AC 328 ms
54,940 KB
testcase_07 AC 332 ms
55,072 KB
testcase_08 AC 330 ms
55,120 KB
testcase_09 AC 335 ms
55,200 KB
testcase_10 AC 331 ms
55,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()
  val ms = readLine()!!.split(" ").map(String::toInt).sorted()
  ms.zip((1..n).toList()).map  {
    Math.abs( it.first - it.second )
  }.sum().run(::println)
}
0