結果

問題 No.2057 Ising Model
ユーザー 👑 KazunKazun
提出日時 2022-08-26 21:50:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-10-13 22:23:39
合計ジャッジ時間 2,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,296 KB
testcase_01 AC 37 ms
53,108 KB
testcase_02 AC 38 ms
51,964 KB
testcase_03 AC 37 ms
52,996 KB
testcase_04 AC 34 ms
52,676 KB
testcase_05 AC 35 ms
52,884 KB
testcase_06 AC 35 ms
51,684 KB
testcase_07 AC 34 ms
51,816 KB
testcase_08 AC 36 ms
52,756 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 36 ms
52,808 KB
testcase_12 AC 36 ms
52,648 KB
testcase_13 AC 34 ms
52,496 KB
testcase_14 AC 35 ms
52,724 KB
testcase_15 AC 35 ms
51,940 KB
testcase_16 AC 34 ms
52,192 KB
testcase_17 AC 37 ms
51,956 KB
testcase_18 AC 36 ms
52,024 KB
testcase_19 AC 36 ms
53,132 KB
testcase_20 AC 36 ms
52,480 KB
testcase_21 AC 35 ms
52,556 KB
testcase_22 AC 35 ms
52,612 KB
testcase_23 AC 36 ms
53,564 KB
testcase_24 AC 36 ms
52,288 KB
testcase_25 WA -
testcase_26 AC 34 ms
51,756 KB
testcase_27 AC 36 ms
53,220 KB
testcase_28 AC 35 ms
52,208 KB
testcase_29 WA -
testcase_30 AC 36 ms
52,944 KB
testcase_31 AC 37 ms
52,124 KB
testcase_32 AC 37 ms
51,696 KB
testcase_33 AC 36 ms
52,560 KB
testcase_34 WA -
testcase_35 AC 35 ms
51,632 KB
testcase_36 AC 35 ms
52,120 KB
testcase_37 AC 35 ms
52,632 KB
testcase_38 WA -
testcase_39 AC 35 ms
51,704 KB
testcase_40 AC 37 ms
51,872 KB
testcase_41 AC 36 ms
51,796 KB
testcase_42 WA -
testcase_43 AC 35 ms
52,444 KB
testcase_44 AC 35 ms
52,368 KB
testcase_45 AC 35 ms
52,488 KB
testcase_46 AC 34 ms
52,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,B=map(int,input().split())

if N%2==1:
    ans=-A*(N-1)-B
else:
    ans=min(-A*(N-1), -A*(N-3)-2*B, A*(N-1)-B*N)

print(ans)
0