Löse ABC166 A ~ D mit Python

Einführung

Heute waren 4 Abschlüsse von A nach D. Ich war heute auch von C beunruhigt ()

Ein Problem

Problem

** Gedanken ** if

s = input()

if s == 'ABC':
    print('ARC')
else:
    print('ABC')

B Problem

Problem

** Gedanken ** Die Eingabe war etwas mühsam. Machen Sie eine Liste von N Personen und sehen Sie, ob Sie irgendwelche Süßigkeiten haben.

n, k = map(int,input().split())
d = []
a = []
for _ in range(k):
    d.append(int(input()))
    a.append(list(map(int,input().split())))
check = [False] * n
for i in range(k):
    for j in a[i]:
        check[j-1] = True

ans = 0
for i in range(n):
    if not check[i]:
        ans += 1
print(ans)

C Problem

Problem

** Gedanken ** Machen Sie eine Liste der Anzahl der verbundenen Straßen und überprüfen Sie die Größe. Ich habe nicht verarbeitet, wenn die Höhe gleich ist, und 3WA kam heraus. Ich werde dir nicht vergeben.

n, m = map(int,input().split())
h = list(map(int,input().split()))
ab = [(list(map(int,input().split()))) for _ in range(m)]

path = [0] * n
check = [0] * n
for i in range(m):
    path[ab[i][0]-1] += 1
    path[ab[i][1]-1] += 1
    if h[ab[i][0]-1] < h[ab[i][1]-1]:
        check[ab[i][1]-1] += 1
    elif h[ab[i][0]-1] == h[ab[i][1]-1]:
        continue
    else:
        check[ab[i][0]-1] += 1

ans = 0
for i in range(n):
    if path[i] == check[i]:
        ans +=1

print(ans)

D Problem

Problem

** Gedanken ** Mathematik? Du weißt es nicht. Ich habe überall über $ -1000 <= a, b <= 1000 $ gesucht.

x = int(input())

for i in range(-1000,1000):
    for j in range(-1000,1000):
        if i ** 5 - j ** 5 == x:
            print(i,j)
            quit()

Zusammenfassung

Es ist nicht gut, weil die Details übersehen werden und Pena wächst und Zeit verloren geht. Wieder wurden C und D früher gelöst. Es ist beschämend. Wir sehen uns wieder, gute Nacht.

Recommended Posts

Löse ABC166 A ~ D mit Python
Löse AtCoder ABC168 mit Python (A ~ D)
Löse ABC163 A ~ C mit Python
Löse ABC168 A ~ C mit Python
Löse ABC162 A ~ C mit Python
Löse ABC167 A ~ C mit Python
Löse ABC158 A ~ C mit Python
[AtCoder] Löse ABC1 ~ 100 Ein Problem mit Python
Löse ABC165 A, B, D mit Python
Löse AtCoder ABC166 mit Python
Löse ABC175 D in Python
AtCoder ABC 182 Python (A ~ D)
[AtCoder] Lösen Sie ein Problem von ABC101 ~ 169 mit Python
Löse A ~ D des Yuki-Codierers 247 mit Python
Ich wollte das ABC164 A ~ D-Problem mit Python lösen
Löse ABC036 A ~ C mit Python
Löse ABC037 A ~ C mit Python
Lösen mit Ruby und Python AtCoder ABC133 D Kumulative Summe
Löse ABC175 A, B, C mit Python
ABC 157 D - Lösungsvorschläge für Freunde in Python!
Ich wollte ABC160 mit Python lösen
Ich wollte ABC172 mit Python lösen
Löse AtCoder 167 mit Python
Löse Mathe mit Python
Löse ABC169 mit Python
Löse POJ 2386 mit Python
Fordern Sie AtCoder (ABC) 164 mit Python heraus! A ~ C Problem
[Python] Löse Gleichungen mit Sympy
AtCoder ABC 177 Python (A ~ E)
AtCoder ABC 178 Python (A ~ E)
Erstellen Sie ein 3D-GIF mit Python3
Löse ABC176 E in Python
AtCoder ABC 176 Python (A ~ E)
Machen Sie eine Lotterie mit Python
Erstellen Sie ein Verzeichnis mit Python
Löse den Atcoder ABC176 (A, B, C, E) in Python
[Python] So erstellen Sie mit Matplotlib ein zweidimensionales Histogramm
Erstellen Sie eine 2D-CAD-Datei ".dxf" mit Python [ezdxf]
[Erklärung zum AtCoder] Kontrollieren Sie die A-, B-, (C), D-Probleme von ABC165 mit Python!
[AtCoder-Erklärung] Kontrollieren Sie die A-, B-, C- und D-Probleme von ABC183 mit Python!
Lösen mit Ruby und Python AtCoder ABC084 D Kumulative Summe der Primzahlen
[Erklärung zum AtCoder] Kontrollieren Sie die A-, B-, C- und D-Probleme von ABC181 mit Python!
[Python] Was ist eine with-Anweisung?
Solver> Link> Lösen Sie Excel Solver mit Python
Python-Grafikhandbuch mit Matplotlib.
[AtCoder Erklärung] Kontrollieren Sie ABC180 A, B, C Probleme mit Python!
Lösen mit Ruby und Python AtCoder ABC178 D Dynamische Planungsmethode
Dreidimensionale Skelettstrukturanalyse mit Python
ABC127 A, B, C Erklärung (Python)
Lassen Sie uns eine GUI mit Python erstellen.
Lösen mit Ruby und Python AtCoder ABC151 D Suche nach Breitenpriorität
Eine Sammlung wettbewerbsfähiger Pro-Techniken, die mit Python gelöst werden können
ABC166 in Python A ~ C Problem
Löse den Atcoder ABC169 A-D mit Python
Erstellen Sie eine virtuelle Umgebung mit Python!