結果

問題 No.2057 Ising Model
ユーザー qibqib
提出日時 2022-12-28 02:25:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 259 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 127,872 KB
最終ジャッジ日時 2024-11-22 15:27:01
合計ジャッジ時間 66,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
56,960 KB
testcase_01 AC 38 ms
127,360 KB
testcase_02 AC 40 ms
63,104 KB
testcase_03 AC 38 ms
127,360 KB
testcase_04 AC 37 ms
57,088 KB
testcase_05 AC 37 ms
126,976 KB
testcase_06 AC 36 ms
56,960 KB
testcase_07 AC 35 ms
127,872 KB
testcase_08 AC 35 ms
56,960 KB
testcase_09 AC 36 ms
127,744 KB
testcase_10 AC 36 ms
56,960 KB
testcase_11 AC 37 ms
126,976 KB
testcase_12 AC 35 ms
57,472 KB
testcase_13 AC 39 ms
127,488 KB
testcase_14 AC 37 ms
57,088 KB
testcase_15 AC 37 ms
60,912 KB
testcase_16 AC 36 ms
57,344 KB
testcase_17 AC 37 ms
127,232 KB
testcase_18 AC 38 ms
57,472 KB
testcase_19 AC 38 ms
127,616 KB
testcase_20 AC 37 ms
56,704 KB
testcase_21 AC 35 ms
126,976 KB
testcase_22 AC 37 ms
56,960 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 37 ms
51,456 KB
testcase_45 AC 37 ms
51,584 KB
testcase_46 AC 38 ms
127,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sgn = [1, -1]

dp = [- b * sgn[i] for i in range(2)]
for _ in range(n - 1):
  ndp = [0 for _ in range(2)]
  ndp[0] = min(dp[0] + a - b, dp[1] - a - b)
  ndp[1] = min(dp[0] - a + b, dp[1] + a + b)
  dp = ndp

print(min(dp))
0