luyencode / comments

Server lưu trữ bình luận trên Luyện Code
https://luyencode.net
6 stars 3 forks source link

Báo lỗi bài tập trên Luyện Code #365

Open behitek opened 3 years ago

behitek commented 3 years ago

Mặc dù chúng mình đã hết sức cố gắng lúc soạn đề, nhưng vẫn có thể bỏ sót các lỗi không mong muốn hoặc bộ testcase quá yếu.

Nếu trong quá trình bạn làm bài tập và phát hiện ra đề có lỗi thì hãy để lại comment tại issue này để chúng tôi biết nhé! (Vote/React icon nếu đã có người report)

Issue này là nơi để mọi người báo lỗi bài tập trên Luyện Code!

Template báo lỗi:

- **Bài tập**: ID bài hoặc URL bài tập
- **Mô tả lỗi**: Mô tả về lỗi mà bạn phát hiện
- **Giải pháp**: Đề xuất giải pháp (nếu có) 

Vui lòng không bình luận tại issue này nếu:

Cảm ơn sự góp sức của các bạn!

f4na0 commented 3 years ago

Trả lời: Cảm ơn em nhé, anh đã sửa lại đề.

hieuguyen07012004 commented 3 years ago

Trả lời: Em thử kiểm tra lại nhé, anh có dùng solution AC để kiểm tra thì ví dụ mẫu không sai.

Brucewayn33 commented 3 years ago
thangtcm commented 2 years ago

Bài tập : https://luyencode.net/problem/VL18 Mô tả lỗi : máy không hiểu hàm strrev trong C Giải pháp : thêm

stving556 commented 2 years ago

Bài tập:https://luyencode.net/problem/VL19 Mô tả lỗi: testcase 4 bị lỗi hay sao ấy a Giải pháp: sửa test

aohkgnadnart commented 2 years ago
barbatos1 commented 2 years ago

Bài tập: https://luyencode.net/problem/VL19 Mô tả lỗi: Ad xem lại test 5 Giải pháp:

HungPhucDang commented 2 years ago

Bài tập: https://luyencode.net/problem/MINPOS Mô tả lỗi: Bị lỗi phần giới hạn dữ liệu vào

ghost commented 2 years ago
honga789 commented 2 years ago

Bài tập: https://luyencode.net/problem/NUMTRANS Mô tả lỗi: Em thấy lỗi do test case yếu thiếu th : n = 4; đầu vào là 99 98 97 9 thì ai dùng multiset sẽ in ra 9998979 mà vẫn ac nên thiếu test case kiểu trên ạ. Giải pháp: Em nghĩ nên thêm các test case 5 99 9 88 8 87

zhongli2k6 commented 2 years ago

Bài tập: https://luyencode.net/problem/EGROUP Mô tả lỗi: Đề cho Dk thuộc [1,2] mà lại có Dk = 3 thế kia Giải pháp: Em nghĩ sai test

hoangdang20 commented 2 years ago
LeLam2005 commented 2 years ago
anhdtph23299 commented 2 years ago

Bài tập :https://oj.luyencode.net/problem/VL11 Mô tả lỗi : chưa check số nguyên 121 (Là số chia hết cho 11) Giải pháp : Thêm test case

toidicakhia commented 2 years ago

Bài tập: https://oj.luyencode.net/problem/KANGAROO Mô tả lỗi: Code sai nhưng vẫn accept Giải pháp: Thêm test

Code lỗi

```cpp #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); int t, xa, va, xb, vb; cin >> t; while (t--) { cin >> xa >> va >> xb >> vb; cout << ((va > vb)? "YES" : "NO") << "\n"; } return 0; } ```

m0nters commented 1 year ago

Bài tập: https://oj.luyencode.net/problem/Baovebaibien Mô tả lỗi: Code đúng, đã thử đúng 2 test case đề bài cho trên VS, đã tự nghĩ ra test case xong vẽ ra giấy nháp ngồi check, mà compiler vẫn không accpet, báo là run time error Giải pháp: chắc compiler web có vấn đề

Code lỗi: https://github.com/m0nters/code-chung/blob/main/baovebobien.cpp

sorry em là newbie nên ko biết embed code vào comment như các pro ở trên :v ai biết cách embed code vào comment chỉ em vs ạ

uvnb195 commented 1 year ago

Bài tập: https://oj.luyencode.net/problem/DK10 Lỗi : case 1: case 3: case 5: case 7: case 8: case 10: case 12: System.out.print(31); break; =>chạy được còn case: 1,3,5,7,8,10,12 => lỗi mặc dù 2 cái tương đương nhau.