August 13, 2020
Delete the array and find UCLN
Threads: Given an integer array of n (1<n<1000) element, (-100<a[i]<=100). Please write CT to do the following things
1. Remove duplicate elements, just keep 1 element each type
2. Remove all elements that are primes.
3. Find the UCLN of the remaining elements, nếu không còn phần tử nào để tìm ước chung lớn nhất thì xuất “xoa het roi!”
Dữ liệu vào: Integer n and sequence of n integers, số nguyên m
Dữ liệu ra: 3 current (xem đề và ví dụ)
For example: Input 10 2 8 3 16 8 40 20 5 3 16 Output 2 8 3 16 40 20 5 8 16 40 20 4Mời các bạn truy cập kênh youtube: Thầy Thọ C2 để cùng học Pascal nhé!
You are not logged in? Log in to Submit Now!
2 Comments
Add a Comment
You must be logged in to post a comment.
2. Wrong Answer
Test Input:
12
2 -8 3 16 8 40 20 5 3 16 0 0
Test Output:
2 -8 3 16 8 40 20 5 0
-8 16 8 40 20 0
4
Your Output:
2 3 16 8 40 20 5 0
16 8 40 20 0
4
Test này mình chạy trên máy mình ra đúng. Nhưng khi test trong hệ thống lại chấm thành ra như vậy nhỉ?( Bị mất số âm)
em đã phát hiên ra lỗi sai của mình rồi 🙂