結果

問題 No.2057 Ising Model
ユーザー shobonvipshobonvip
提出日時 2022-08-26 21:43:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 53,700 KB
最終ジャッジ日時 2024-10-13 22:15:24
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,408 KB
testcase_01 AC 36 ms
51,952 KB
testcase_02 AC 34 ms
51,752 KB
testcase_03 AC 34 ms
52,448 KB
testcase_04 AC 33 ms
51,624 KB
testcase_05 AC 34 ms
51,936 KB
testcase_06 AC 35 ms
52,432 KB
testcase_07 AC 35 ms
52,976 KB
testcase_08 AC 33 ms
52,364 KB
testcase_09 AC 34 ms
53,560 KB
testcase_10 AC 37 ms
52,500 KB
testcase_11 AC 36 ms
52,340 KB
testcase_12 WA -
testcase_13 AC 36 ms
51,996 KB
testcase_14 AC 35 ms
52,092 KB
testcase_15 AC 35 ms
52,440 KB
testcase_16 AC 38 ms
51,944 KB
testcase_17 AC 35 ms
52,200 KB
testcase_18 AC 35 ms
51,700 KB
testcase_19 AC 34 ms
52,712 KB
testcase_20 AC 35 ms
52,564 KB
testcase_21 AC 35 ms
52,152 KB
testcase_22 AC 35 ms
52,284 KB
testcase_23 WA -
testcase_24 AC 35 ms
51,948 KB
testcase_25 AC 35 ms
53,496 KB
testcase_26 AC 36 ms
52,072 KB
testcase_27 WA -
testcase_28 AC 34 ms
52,760 KB
testcase_29 AC 34 ms
53,308 KB
testcase_30 AC 34 ms
52,216 KB
testcase_31 AC 36 ms
53,220 KB
testcase_32 AC 37 ms
52,056 KB
testcase_33 AC 37 ms
52,208 KB
testcase_34 AC 36 ms
51,836 KB
testcase_35 AC 34 ms
52,072 KB
testcase_36 AC 37 ms
52,608 KB
testcase_37 AC 34 ms
52,352 KB
testcase_38 AC 35 ms
51,932 KB
testcase_39 AC 35 ms
52,508 KB
testcase_40 AC 34 ms
53,700 KB
testcase_41 AC 35 ms
52,640 KB
testcase_42 AC 34 ms
52,208 KB
testcase_43 AC 35 ms
51,688 KB
testcase_44 AC 34 ms
52,024 KB
testcase_45 WA -
testcase_46 AC 35 ms
52,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b = map(int,input().split())

# 1,1,1,1,1 ..., 1
ans = a * (n-1) - b * n

# 1,-1,1,-1, ..., 1

if n % 2 == 0:
	ans = min(ans, -a * (n-1))
else:
	ans = min(ans, -a * (n-1) - b)

print(ans)
0