結果

問題 No.2057 Ising Model
ユーザー rhincodon66rhincodon66
提出日時 2022-08-26 21:39:28
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 12,355 ms
コンパイル使用メモリ 446,220 KB
実行使用メモリ 57,072 KB
最終ジャッジ日時 2024-10-13 22:08:17
合計ジャッジ時間 28,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
56,868 KB
testcase_01 AC 283 ms
56,704 KB
testcase_02 AC 286 ms
56,712 KB
testcase_03 AC 281 ms
56,892 KB
testcase_04 AC 289 ms
56,860 KB
testcase_05 AC 284 ms
56,740 KB
testcase_06 AC 286 ms
56,708 KB
testcase_07 AC 288 ms
56,604 KB
testcase_08 AC 279 ms
56,600 KB
testcase_09 AC 287 ms
56,704 KB
testcase_10 AC 291 ms
56,688 KB
testcase_11 AC 287 ms
56,924 KB
testcase_12 WA -
testcase_13 AC 293 ms
56,692 KB
testcase_14 AC 285 ms
56,728 KB
testcase_15 AC 285 ms
56,636 KB
testcase_16 AC 289 ms
56,660 KB
testcase_17 AC 290 ms
56,620 KB
testcase_18 AC 281 ms
56,636 KB
testcase_19 AC 281 ms
56,792 KB
testcase_20 AC 291 ms
56,668 KB
testcase_21 AC 282 ms
56,692 KB
testcase_22 AC 288 ms
56,788 KB
testcase_23 WA -
testcase_24 AC 289 ms
56,868 KB
testcase_25 AC 284 ms
56,932 KB
testcase_26 AC 284 ms
56,688 KB
testcase_27 WA -
testcase_28 AC 276 ms
56,636 KB
testcase_29 AC 281 ms
56,604 KB
testcase_30 AC 299 ms
56,616 KB
testcase_31 AC 289 ms
56,684 KB
testcase_32 AC 293 ms
56,712 KB
testcase_33 AC 295 ms
56,728 KB
testcase_34 AC 295 ms
56,872 KB
testcase_35 AC 300 ms
56,816 KB
testcase_36 AC 331 ms
56,716 KB
testcase_37 AC 286 ms
56,720 KB
testcase_38 AC 290 ms
56,724 KB
testcase_39 AC 289 ms
56,688 KB
testcase_40 AC 281 ms
56,728 KB
testcase_41 AC 289 ms
56,600 KB
testcase_42 AC 289 ms
56,708 KB
testcase_43 AC 293 ms
56,736 KB
testcase_44 AC 282 ms
56,884 KB
testcase_45 WA -
testcase_46 AC 285 ms
56,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

import java.lang.StringBuilder
import java.util.*
import kotlin.collections.ArrayList
import kotlin.math.*

fun main(args:Array<String>) {
    /*
    val t = readLine()!!.toInt()
    repeat(t) {
        solve()
    }
    */
    solve()
}

fun solve() {
    val (n, a, b) = readLine()!!.split(" ").map{it.toLong()}.toLongArray()
    val ans = min((n - 1) * a - b * n, -(n - 1) * a - if (n % 2 == 0L) 0 else b)
    println(ans)
}
0