結果

問題 No.2057 Ising Model
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 19:03:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 57,140 KB
最終ジャッジ日時 2024-06-24 12:47:19
合計ジャッジ時間 3,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,048 KB
testcase_01 AC 48 ms
55,572 KB
testcase_02 AC 45 ms
54,696 KB
testcase_03 AC 43 ms
55,736 KB
testcase_04 AC 44 ms
55,172 KB
testcase_05 AC 43 ms
55,300 KB
testcase_06 AC 44 ms
56,680 KB
testcase_07 AC 44 ms
55,176 KB
testcase_08 AC 44 ms
56,400 KB
testcase_09 AC 44 ms
55,124 KB
testcase_10 AC 43 ms
55,192 KB
testcase_11 AC 44 ms
56,232 KB
testcase_12 WA -
testcase_13 AC 44 ms
55,116 KB
testcase_14 AC 44 ms
55,788 KB
testcase_15 AC 43 ms
55,164 KB
testcase_16 AC 49 ms
56,260 KB
testcase_17 AC 45 ms
56,608 KB
testcase_18 AC 45 ms
55,564 KB
testcase_19 AC 43 ms
55,248 KB
testcase_20 WA -
testcase_21 AC 44 ms
56,116 KB
testcase_22 AC 44 ms
56,200 KB
testcase_23 WA -
testcase_24 AC 44 ms
56,132 KB
testcase_25 AC 44 ms
54,828 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 44 ms
55,048 KB
testcase_29 AC 43 ms
55,796 KB
testcase_30 AC 44 ms
56,364 KB
testcase_31 AC 45 ms
56,000 KB
testcase_32 AC 46 ms
55,496 KB
testcase_33 AC 45 ms
55,244 KB
testcase_34 AC 45 ms
56,000 KB
testcase_35 WA -
testcase_36 AC 44 ms
55,476 KB
testcase_37 AC 45 ms
56,296 KB
testcase_38 AC 44 ms
54,768 KB
testcase_39 AC 45 ms
56,296 KB
testcase_40 AC 44 ms
55,036 KB
testcase_41 WA -
testcase_42 AC 44 ms
56,056 KB
testcase_43 AC 44 ms
56,208 KB
testcase_44 AC 44 ms
55,152 KB
testcase_45 WA -
testcase_46 AC 44 ms
55,932 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())
if A < B:
    print((A-B)*N - A)
    exit()

if N%2==0:
    print(-A*(N-1))
else:
    print(-A*(N-1)-B)
0