luyencode / comments

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

https://oj.luyencode.net/contest/28/problem/B5_DBS #516

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

Apok's Third ConTest - Luyện Code Online

https://luyencode.net/contest/28/problem/B5_DBS

tuankietcoderr commented 3 years ago

đề này sai rồi nhé, Ax <= M nhưng khi in ra thì lại >= M ??

m1tym1c2 commented 3 years ago

cộng chuỗi với xét tới n=100 là acpt bài này rồi ạ

HaoPham23 commented 3 years ago

bài này ko nên là bài Khó đâu, xét vô Dễ thì đúng hơn, chỉ mỗi QHĐ là ăn rồi. Mong ông apok sửa lại.

minhhdtr commented 2 years ago

Đây là lời giải của mình đã AC. Nếu bạn đã cố gắng mà chưa làm được thì có thể tham khảo lời giải của mình.

Xem code AC

``` #include using namespace std; int main() { // cin.tie(nullptr), cout.tie(nullptr)->ios_base::sync_with_stdio(false); vector v(101); v[0] = v[1] = 0; v[2] = 1; for(int i = 3; i <= 100; i++) { v[i] = v[i - 1] + v[i - 2] + v[i - 3]; } long long n; while(cin >> n) { cout << *lower_bound(v.begin(), v.end(), n) << '\n'; } return 0; } ```

son857764 commented 2 years ago

xin cao nhân python3 có lời giải AC 10 ms:

while 1: try: h,b,e =0,0,1 m = int(input()) while e < m: h,b,e = b,e,h+b+e print(e) except: break