https://www.codetree.ai/missions/5/problems/cattle-in-a-rowing-up-2/description
import sys
input = sys.stdin.readline
n = int(input())
num = list(map(int, input().rstrip().split(" ")))
cnt = 0
for i in range(len(num)):
for j in range(i+1, len(num)):
for k in range(j+1, len(num)):
if num[i] <= num[j] and num[j] <= num[k]:
cnt += 1
print(cnt)
728x90
반응형
'🔻PS > Codetree' 카테고리의 다른 글
[Codetree] 이상한 진수 2 Python (0) | 2024.08.06 |
---|---|
[Codetree] 최고의 13위치 Python (0) | 2024.08.05 |
[Codetree] 괄호 쌍 만들어주기 3 Python (0) | 2024.08.04 |
[Codetree] 모이자 Python (0) | 2024.08.04 |
[Codetree] 이동경로상에 있는 모든 숫자 더하기 Python (0) | 2024.07.31 |