結果
問題 | No.2057 Ising Model |
ユーザー | FromBooska |
提出日時 | 2023-06-09 14:42:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 567 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 81,952 KB |
実行使用メモリ | 843,988 KB |
最終ジャッジ日時 | 2024-06-10 09:16:09 |
合計ジャッジ時間 | 3,647 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,224 KB |
testcase_01 | AC | 37 ms
52,108 KB |
testcase_02 | AC | 34 ms
53,632 KB |
testcase_03 | AC | 34 ms
52,676 KB |
testcase_04 | AC | 31 ms
52,416 KB |
testcase_05 | AC | 33 ms
52,412 KB |
testcase_06 | AC | 32 ms
53,180 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 34 ms
53,764 KB |
testcase_10 | AC | 33 ms
52,504 KB |
testcase_11 | AC | 33 ms
52,384 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 33 ms
52,644 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 33 ms
53,164 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | MLE | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
ソースコード
# 最後は1がいい # その1つ前は+1 or -1 # 実験すると全部1というのと、最後から2番目だけ-1というのがある # なぜかはわからない # 10**10は計算できないと思うがとりあえずやってみよう N, A, B = map(int, input().split()) S1 = [1]*N S2 = S1[:N-2] + [-1] + [1] #print(S1, S2) ans1 = 0 for i in range(N-1): ans1 += A*S1[i]*S1[i+1] for i in range(N): ans1 -= B*S1[i] ans2 = 0 for i in range(N-1): ans2 += A*S2[i]*S2[i+1] for i in range(N): ans2 -= B*S2[i] ans = min(ans1, ans2) print(ans)