K
Khách

Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.

15 tháng 4

c++ với ạ

 

15 tháng 4

Bạn tham khảo thử chương trình Python như này nhé!

def find_least_frequent(arr):
    freq_dict = {}
    for num in arr:
        if num in freq_dict:
            freq_dict[num] += 1
        else:
            freq_dict[num] = 1
    
    min_freq = min(freq_dict.values())
    min_value = min(num for num, freq in freq_dict.items() if freq == min_freq)

    return min_value, min_freq

# Đọc dữ liệu từ file input
with open('BAI4.INP', 'r') as f:
    numbers = list(map(int, f.readline().strip().split()))

# Tìm giá trị nhỏ nhất có số lần xuất hiện ít nhất
min_value, min_freq = find_least_frequent(numbers)

# Ghi kết quả vào file output
with open('BAI4.OUT', 'w') as f:
    f.write(f"{min_value} {min_freq}")