結果

問題 No.2057 Ising Model
ユーザー ntudantuda
提出日時 2022-10-01 13:40:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 71 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 53,988 KB
最終ジャッジ日時 2024-06-06 06:15:46
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,048 KB
testcase_01 AC 36 ms
51,700 KB
testcase_02 AC 36 ms
52,944 KB
testcase_03 AC 36 ms
52,632 KB
testcase_04 AC 37 ms
52,188 KB
testcase_05 AC 36 ms
53,344 KB
testcase_06 AC 37 ms
52,356 KB
testcase_07 AC 36 ms
52,000 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,756 KB
testcase_10 AC 38 ms
51,904 KB
testcase_11 AC 37 ms
52,816 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 36 ms
52,004 KB
testcase_18 WA -
testcase_19 AC 36 ms
51,760 KB
testcase_20 WA -
testcase_21 AC 36 ms
52,868 KB
testcase_22 AC 36 ms
53,224 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
53,116 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 38 ms
52,208 KB
testcase_29 AC 37 ms
51,992 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 36 ms
52,020 KB
testcase_34 AC 35 ms
52,172 KB
testcase_35 WA -
testcase_36 AC 36 ms
53,328 KB
testcase_37 WA -
testcase_38 AC 36 ms
52,572 KB
testcase_39 WA -
testcase_40 AC 35 ms
52,560 KB
testcase_41 WA -
testcase_42 AC 35 ms
52,632 KB
testcase_43 AC 37 ms
52,212 KB
testcase_44 AC 37 ms
51,812 KB
testcase_45 WA -
testcase_46 AC 37 ms
51,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,B = map(int,input().split())
print(min((N-1)*A-N*B,(1-N)*A-B*N%2))
0