結果
問題 |
No.2057 Ising Model
|
ユーザー |
![]() |
提出日時 | 2022-08-26 21:48:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 647 bytes |
コンパイル時間 | 3,577 ms |
コンパイル使用メモリ | 251,468 KB |
最終ジャッジ日時 | 2025-01-31 04:38:59 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 31 WA * 13 |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001 long long N,A,B; int main() { cin>>N>>A>>B; if(N%2==0){ long long ans = Inf64; ans = min(ans,A*(N-1) - B*N); long long t = N/2; ans = min(ans,-A*t); if(N>=3)ans = min(ans,-A*((t-1)*2) - B * 2); cout<<ans<<endl; return 0; } long long ans = Inf64; ans = -N * B + A * (N-1); long long t = ans; t += (N/2) * (2*B-A*4); ans = min(ans,t); cout<<ans<<endl; return 0; }