ABC128 A, B, C Kommentar (Python)

Ein Problem

https://atcoder.jp/contests/abc128/tasks/abc128_a

a,p = map(int,input().split())
print((a*3+p)//2)

Die Antwort ist a × 3 + p geteilt durch 2.

B Problem

https://atcoder.jp/contests/abc128/tasks/abc128_b

n = int(input())
x = [[input().split(),i+1]for i in range(n)]
x = sorted(x, key = lambda x:(x[0][0],-int(x[0][1])))
for i in range(n):
    print(x[i][1])

Das Problem der Sortierung nach mehreren Elementen. x = sorted(x, key = lambda x:(x[0][0],-int(x[0][1]))) Wenn in mehrere Schlüssel angegeben sind, erfolgt die Sortierung in der Reihenfolge x [0] [0], -int (x [0] [1]). Da die Ausgabe nach Zahlen erfolgt, erstellen Sie eine Liste, die die Zahl bei der Eingabe von x enthält.

C Problem

https://atcoder.jp/contests/abc128/tasks/abc128_c





Recommended Posts

ABC128 A, B, C Kommentar (Python)
ABC129 A, B, C Kommentar
ABC126 A, B, C Erklärung (Python)
Löse ABC163 A ~ C mit Python
Löse ABC168 A ~ C mit Python
Löse ABC036 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
Löse den Atcoder ABC176 (A, B, C, E) in Python
Löse ABC037 A ~ C mit Python
[AtCoder Erklärung] Kontrollieren Sie ABC180 A, B, C Probleme mit Python!
[AtCoder Erklärung] Kontrollieren Sie ABC164 A, B, C Probleme mit Python!
[AtCoder Erklärung] Kontrollieren Sie ABC168 A, B, C Probleme mit Python!
Python> Schlüsselwortargumente> hoge (** {'a': 1, 'b': 2, 'c': 3})
Löse ABC165 A, B, D mit Python
ABC147 C --HonestOrUnkind2 [Python]
Python3> rund (a - b, 7)
Fordern Sie AtCoder (ABC) 164 mit Python heraus! A ~ C Problem
[Erklärung zum AtCoder] Kontrollieren Sie die A-, B- und C-Probleme von ABC182 mit Python!
[AtCoder Erklärung] Kontrollieren Sie ABC184 A, B, C Probleme mit Python!
AtCoder ABC 177 Python (A ~ E)
AtCoder ABC 178 Python (A ~ E)
AtCoder ABC 176 Python (A ~ E)
AtCoder ABC 182 Python (A ~ D)
[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!
[Erklärung zum AtCoder] Kontrollieren Sie die A-, B-, C- und D-Probleme von ABC181 mit Python!
Python a + = b und a = a + b sind unterschiedlich
ABC-Memorandum [ABC159 C - Maximales Volumen] (Python)
Löse ABC166 A ~ D mit Python
ABC-Memorandum [ABC161 C - Integer ersetzen] (Python)
ABC-Memorandum [ABC158 C - Steuererhöhung] (Python)
AtCoder ABC 114 C-755 mit Python3 gelöst
Vorlage AtCoder ABC 179 Python (A ~ E)
[Python] gibt A [oder / und] B zurück
[AtCoder-Kommentar] Gewinnen Sie mit Python das ABC165 C-Problem "Many Requirements"!
Algorithmus in Python (ABC 146 C Dichotomie
ABC-Memorandum [ABC157 C - Errate die Zahl] (Python)
Löse AtCoder ABC168 mit Python (A ~ D)
Anfänger ABC154 (Python)
Anfänger ABC156 (Python)
AtCoder ABC 174 Python
Anfänger ABC155 (Python)
Python C ++ Notizen
Anfänger ABC157 (Python)
Was passiert, wenn Sie in Python "A, B als C importieren"?
AtCoder ABC 175 Python
Führen Sie Python-Skripte in C # -GUI-Anwendungen aus
ABC-Memorandum [ABC160 C - Reiseverkäufer um den See] (Python)
Python-Memo- "wenn nicht A und B" war "wenn (nicht A) und B"
Ich habe versucht, ein Python 3-Modul in C hinzuzufügen