Aujourd'hui, il y avait 4 complets de A à D. J'ai aussi été troublé par C aujourd'hui ()
** Pensées ** if
s = input()
if s == 'ABC':
print('ARC')
else:
print('ABC')
** Pensées ** L'entrée était un peu gênante. Faites une liste de N personnes et voyez si vous avez des bonbons.
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)
** Pensées ** Faites une liste du nombre de routes connectées et vérifiez la taille. Je n'ai pas traité quand la hauteur est la même, et 3WA est sorti. Je ne te pardonnerai pas.
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)
** Pensées ** Mathématiques? Vous ne savez pas. J'ai cherché partout dans le monde -1000 $ <= a, b <= 1000 $.
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()
Ce n'est pas bon car les détails sont négligés et le pena grandit et le temps est perdu. Encore une fois, C et D ont été résolus plus tôt. C'est mortifiant. A bientôt, bonne nuit.
Recommended Posts