TIN HỌC TRẺ 2023 - VÒNG KHU VỰC MIỀN TRUNG - BẢNG A

Problems

# Problem Points
1 Đổi màu ô vuông 100
2 Cái kẹo 100
3 Đếm chữ số 100
4 Nhân bản 100

Announcements

When Title Description
July 2, 2023, 10:24 [Bảng A] Bài 4: Nhân bản

Scratch sẽ bị lỗi nếu tạo ra xâu quá lớn và không ghi nhận điểm cả test nhỏ cho thí sinh. Nếu thí sinh muốn chạy test nhỏ thì không được tạo xâu quá lớn.

TIN HỌC TRẺ 2023 - VÒNG KHU VỰC MIỀN TRUNG

BẢNG A - TIỂU HỌC

Thời gian thi: 9h00 - 10h40 ngày 02/07/2023


Comments

Please read the guidelines before commenting.



  • 0
    MinhMinh2013   commented on July 2, 2024, 2:04 p.m.

    CODE ĐÂY BRO

    def countdiffrentdigit(x,y): x = str(x) y = str(y) count = 0 for i in range(len(x)): if x[i] != y[i]: count += abs(int(x[i]) - int(y[i])) return count def optimize(n): beautiful = [] for x in range(len(n)+1): beautiful += ["3" * (len(n)-x) + "7" * x] beautiful = [int(x) for x in beautiful] result = [] for x in beautiful: result += [countdiffrentdigit(n,x)] return min(result) n = input() print(optimize(n))


  • 0
    DucKien2014   commented on June 29, 2024, 4:51 p.m.

    Cứu tui bài 4