結果

問題 No.2057 Ising Model
ユーザー kenskens
提出日時 2022-08-26 21:43:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 199,916 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 22:15:20
合計ジャッジ時間 3,128 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)n; i++)
using ll = long long;

int main(){
  ll n, a, b;
  cin >> n >> a >> b;
  ll ans = -b*n + a*(n-1);
  ans = min(ans,-a*(n-1)-b*((n+1)/2)+b*(n/2));
  if(n % 2 == 0 && n >= 4) ans = min(ans,-(n-3)*a-2*b);
  cout << ans << endl;
  return 0;
}
0