結果

問題 No.2057 Ising Model
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 19:05:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 56,808 KB
最終ジャッジ日時 2024-06-24 13:02:58
合計ジャッジ時間 3,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,144 KB
testcase_01 AC 50 ms
55,928 KB
testcase_02 AC 46 ms
55,308 KB
testcase_03 AC 46 ms
55,292 KB
testcase_04 AC 45 ms
55,104 KB
testcase_05 AC 44 ms
55,404 KB
testcase_06 AC 47 ms
56,432 KB
testcase_07 AC 46 ms
55,840 KB
testcase_08 AC 46 ms
55,624 KB
testcase_09 AC 46 ms
55,764 KB
testcase_10 AC 46 ms
54,508 KB
testcase_11 AC 46 ms
55,152 KB
testcase_12 WA -
testcase_13 AC 46 ms
56,808 KB
testcase_14 AC 46 ms
55,032 KB
testcase_15 AC 46 ms
55,580 KB
testcase_16 AC 46 ms
55,360 KB
testcase_17 AC 45 ms
55,340 KB
testcase_18 AC 45 ms
55,392 KB
testcase_19 AC 46 ms
55,836 KB
testcase_20 AC 45 ms
55,420 KB
testcase_21 AC 45 ms
55,436 KB
testcase_22 AC 45 ms
54,652 KB
testcase_23 WA -
testcase_24 AC 46 ms
55,104 KB
testcase_25 AC 46 ms
55,608 KB
testcase_26 AC 45 ms
55,600 KB
testcase_27 WA -
testcase_28 AC 45 ms
55,524 KB
testcase_29 AC 46 ms
55,136 KB
testcase_30 AC 46 ms
56,364 KB
testcase_31 AC 45 ms
55,520 KB
testcase_32 AC 46 ms
55,304 KB
testcase_33 AC 63 ms
54,856 KB
testcase_34 AC 46 ms
55,356 KB
testcase_35 AC 47 ms
56,420 KB
testcase_36 AC 45 ms
54,924 KB
testcase_37 AC 45 ms
55,132 KB
testcase_38 AC 45 ms
55,392 KB
testcase_39 AC 45 ms
55,980 KB
testcase_40 AC 46 ms
56,112 KB
testcase_41 AC 44 ms
55,400 KB
testcase_42 AC 45 ms
55,164 KB
testcase_43 AC 44 ms
54,504 KB
testcase_44 AC 45 ms
56,624 KB
testcase_45 WA -
testcase_46 AC 45 ms
55,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
import math,sys
input = sys.stdin.readline


N,A,B = map(int,input().split())
X = (A-B)*N - A
if N%2==0:
    Y = -A*(N-1)
else:
    Y = -A*(N-1)-B

print(min(X,Y))
0