Löse ABC165 A, B, D mit Python

Einführung

C ist schwierig. A ist auch schwierig

Ein Problem

Problem

** Gedanken ** Als ich versuchte, es zu genießen, habe ich WA gemacht, also habe ich mich stabilisiert.

k = int(input())
a, b = map(int,input().split())

for i in range(a,b+1):
    if i % k == 0:
        print('OK')
        quit()

print('NG')

B Problem

Problem

** Gedanken ** Nur während

x = int(input())

seed = 100
ans = 0
while True:
    seed = int(1.01 * seed)
    ans += 1
    if seed >= x:
        print(ans)
        break

C Problem

Problem

** Gedanken ** Ich dachte, ich würde eine vollständige Suche durchführen, aber die Implementierung scheint schwer zu sein, also gab ich auf und ging zu D.

D Problem

Problem

** Gedanken ** Wenn $ x <b $ ist, ist der Subtraktionsterm am Ende 0, wenn der Boden genommen wird, also $ x <b $. Je größer die Zahl, desto größer wird sie intuitiv, wenn Sie das Wort ergreifen. Nehmen Sie also das Maximum von $ x $, das die Bedingungen erfüllt.

import math
a, b, n = map(int,input().split())

n = min(b,n) #search range
if n == b:
    n -= 1
ans = math.floor(a/b*n)
print(ans)

Zusammenfassung

Was ist C? Ich werde morgen mein Bestes geben. wir sehen uns. Gute Nacht.

Recommended Posts

Löse ABC165 A, B, D mit Python
Löse ABC175 A, B, C mit Python
Löse ABC175 D in Python
Löse ABC166 A ~ D mit Python
Löse ABC036 A ~ C mit Python
Löse ABC037 A ~ C mit Python
Löse den Atcoder ABC176 (A, B, C, E) in Python
Löse ABC169 mit Python
ABC 157 D - Lösungsvorschläge für Freunde in Python!
Löse ABC176 E in Python
AtCoder ABC 182 Python (A ~ D)
Löse ABC163 A ~ C mit Python
ABC127 A, B, C Erklärung (Python)
ABC166 in Python A ~ C Problem
Löse den Atcoder ABC169 A-D mit Python
Löse ABC168 A ~ C mit Python
Löse ABC162 A ~ C mit Python
Löse ABC167 A ~ C mit Python
ABC128 A, B, C Kommentar (Python)
Löse ABC158 A ~ C mit Python
ABC126 A, B, C Erklärung (Python)
[AtCoder] Löse ABC1 ~ 100 Ein Problem mit Python
Ich wollte ABC159 mit Python lösen
Ich wollte das ABC164 A ~ D-Problem mit Python lösen
Löse ABC168D in Python
Löse ABC167-D mit Python
Löse ABC146-C mit Python
Löse ABC098-C in Python
Löse ABC159-D in Python
Python3> rund (a - b, 7)
Löse ABC160-E mit Python
[AtCoder] Lösen Sie ein Problem von ABC101 ~ 169 mit Python
AtCoder ABC 177 Python (A ~ E)
Löse AtCoder ABC166 mit Python
Erstellen Sie eine Funktion in Python
Erstellen Sie ein Wörterbuch in Python
[Erklärung zum AtCoder] Kontrollieren Sie die A-, B-, (C), D-Probleme von ABC165 mit Python!
Löse die Multiplikation (entspricht Paiza Rang D) in Python
[AtCoder-Erklärung] Kontrollieren Sie die A-, B-, C- und D-Probleme von ABC183 mit Python!
ABC129 A, B, C Kommentar
Bis zum Zeichnen eines 3D-Diagramms mit Python in Windows 10
AtCoder ABC 176 Python (A ~ E)
Erstellen Sie ein Lesezeichen in Python
Atcoder ABC165 A-D in Python
Atcoder ABC166 A-E in Python
Lösen Sie Optimierungsprobleme mit Python
Zeichne ein Herz in Python
[Erklärung zum AtCoder] Kontrollieren Sie die A-, B-, C- und D-Probleme von ABC181 mit Python!
Atcoder ABC169 A-E in Python
AtCoder ABC177 A-D mit Python
Lösen der Nummernsortierung (entspricht Paiza Rang D) in Python
[AtCoder Erklärung] Kontrollieren Sie ABC180 A, B, C Probleme mit Python!
Lösen mit Ruby und Python AtCoder ABC133 D Kumulative Summe
[AtCoder Erklärung] Kontrollieren Sie ABC158 A, B, C Probleme mit Python!
Erstellen Sie den Code, der in Python "A und vorgeben B" ausgibt
Löse Charakter-Übereinstimmungen (entspricht Paiza-Rang D) in Python
AtCoder ABC151 Problem D Geschwindigkeitsvergleich in C ++ / Python / PyPy
AtCoder ABC168 Ein in Ruby und Python gelöster Fallausdruck
[AtCoder Erklärung] Kontrollieren Sie ABC164 A, B, C Probleme mit Python!
[AtCoder Erklärung] Kontrollieren Sie ABC168 A, B, C Probleme mit Python!