Felipe Bofarull
- 合計アクティビティ 3
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 1
コメント
Felipe Bofarullによる最近のアクティビティ-
from gurobipy import *import math#n = int(input('n = '))n = 4print(n)X = []for i in range(1,n+2): X.append(int(i))print(X)# Modeloof = Model()# Variablesa = of.addVar(vtype=GRB.CONTINUOUS, name=...