結果

問題 No.2057 Ising Model
ユーザー ks2mks2m
提出日時 2022-08-26 21:31:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-10-13 21:57:29
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,824 KB
testcase_01 AC 48 ms
36,464 KB
testcase_02 AC 49 ms
36,596 KB
testcase_03 AC 48 ms
36,556 KB
testcase_04 AC 49 ms
36,696 KB
testcase_05 AC 46 ms
36,724 KB
testcase_06 AC 46 ms
36,968 KB
testcase_07 AC 47 ms
36,576 KB
testcase_08 AC 46 ms
36,892 KB
testcase_09 AC 46 ms
37,084 KB
testcase_10 AC 47 ms
36,584 KB
testcase_11 AC 48 ms
36,448 KB
testcase_12 WA -
testcase_13 AC 47 ms
36,792 KB
testcase_14 AC 47 ms
36,664 KB
testcase_15 AC 47 ms
36,740 KB
testcase_16 AC 48 ms
36,548 KB
testcase_17 AC 47 ms
36,868 KB
testcase_18 AC 45 ms
36,660 KB
testcase_19 AC 47 ms
36,584 KB
testcase_20 AC 48 ms
36,440 KB
testcase_21 AC 46 ms
36,468 KB
testcase_22 AC 48 ms
36,940 KB
testcase_23 WA -
testcase_24 AC 48 ms
36,928 KB
testcase_25 AC 48 ms
36,804 KB
testcase_26 AC 47 ms
36,680 KB
testcase_27 WA -
testcase_28 AC 49 ms
36,824 KB
testcase_29 AC 46 ms
36,964 KB
testcase_30 AC 48 ms
36,836 KB
testcase_31 AC 57 ms
36,452 KB
testcase_32 AC 52 ms
36,444 KB
testcase_33 AC 47 ms
36,604 KB
testcase_34 AC 49 ms
36,768 KB
testcase_35 AC 47 ms
36,804 KB
testcase_36 AC 48 ms
36,944 KB
testcase_37 AC 47 ms
36,772 KB
testcase_38 AC 48 ms
36,648 KB
testcase_39 AC 48 ms
36,940 KB
testcase_40 AC 48 ms
36,700 KB
testcase_41 AC 48 ms
36,604 KB
testcase_42 AC 46 ms
36,644 KB
testcase_43 AC 47 ms
36,868 KB
testcase_44 AC 47 ms
36,828 KB
testcase_45 WA -
testcase_46 AC 45 ms
36,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		long n = Long.parseLong(sa[0]);
		int a = Integer.parseInt(sa[1]);
		int b = Integer.parseInt(sa[2]);
		br.close();

		long v1 = (n - 1) * a - n * b;
		long n1 = n / 2;
		long n2 = n - n1;
		long v2 = (n - 1) * -a - n1 * b + n2 * b;
		long v3 = (n - 1) * -a + n1 * b - n2 * b;
		long ans = Math.min(Math.min(v1, v2), v3);
		System.out.println(ans);
	}
}
0