Livre de fourmis en python: page 47 Armée de Saroumane (POJ 3069)


# coding: utf-8
N = raw_input()
R = raw_input()
X = raw_input()
N, R, X = map(int, N.split())[0],map(int, R.split())[0],map(int, X.split())


colored_pos = [X[0]]
pos = X[0]
# print X
while(1):
    far = pos
    for (i,x) in enumerate(X):
        if pos + R > x:
            far = x
        else:
            break
    colored_pos.append(far)
    pos = x

    if pos + x > X[-1]:
        break

print colored_pos

J'ai appris split ().

Recommended Posts

Livre de fourmis en python: page 47 Armée de Saroumane (POJ 3069)
Livre Ali en python: page 42 numéros
Livre Ali en python: page 43 Planification des sections
Livre Ali en python: page 45 Le plus petit problème dans l'ordre lexical (POJ3617)
Livre Ali en python: Graphique Sec.2 à 5
Livre Ali en python: Auto-implémentation de la file d'attente prioritaire
Livre Ali en python: méthode Dyxtra Sec.2-5
Livre Ali en python: Sec.2 à 5 Graph (préparation)
Livre Ali en python: Sec.2-3, Dynamic Planning (DP)
Livre en spirale en Python! Python avec un livre en spirale! (Chapitre 14 ~)
Livre de fourmis avec python (Chapter3 édition intermédiaire ~)
Créer une nouvelle page en confluence avec Python
Utilisez une page d'erreur personnalisée avec python / tornado
Résolvez "AtCoder version! Arimoto (Débutant)" avec Python!
Quadtree en Python --2
Python en optimisation
CURL en Python
Métaprogrammation avec Python
Python 3.3 avec Anaconda
Géocodage en python
SendKeys en Python
Méta-analyse en Python
Unittest en Python
Époque en Python
Discord en Python
Allemand en Python
DCI en Python
tri rapide en python
nCr en python
Plink en Python
Constante en Python
FizzBuzz en Python
Sqlite en Python
Étape AIC en Python
LINE-Bot [0] en Python
Assemblage inversé avec Python
Réflexion en Python
Constante en Python
format en python
Scons en Python 3
Puyopuyo en python
python dans virtualenv
PPAP en Python
Page de référence Python
Quad-tree en Python
Réflexion en Python
Chimie avec Python
Hashable en Python
DirectLiNGAM en Python
Aplatir en python
Faire de chaque page PowerPoint un fichier image en Python
Comment ajouter des numéros de page à un fichier PDF (en Python)
Implémentation de l'algorithme "Algorithm Picture Book" en Python3 (Heap Sort Edition)