Contest is over.
01:40 long starting on July 2, 2023, 9:00 +07
-
This contest will not be rated.
-
-
Partial scoring is enabled for some or all of these problems.
-
The pretest system will not be used for this contest.
-
There is no submission limit for any of these problems.
-
The contest format is VNOJ.
The maximum score submission for each problem will be used.
Each submission before the first maximum score submission will incur a penalty of 5 minutes.
Ties will be broken by the sum of the last score altering submission time on problems with a non-zero score (including penalty), followed by the time of the last score altering submission.
-
The scoreboard will be visible for the duration of the contest.
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
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))
Cứu tui bài 4