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/problem/LC1 #759

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Bộ ba số - Luyện Code Online

https://luyencode.net/problem/LC1

nguyenbahoang2709 commented 2 years ago

nhan đẹp zai

quanTDN commented 2 years ago

??

thanhphuongdotme commented 2 years ago

Bài này chỉ cần thay a = 0, b = 1, c = N-1 thì luôn AC,.

ghost commented 1 year ago

sao lại có 15 điểm =))

quanTDN commented 1 year ago

cái j 15 điểm ko hiểu

On Tue, Jul 12, 2022 at 3:33 PM ObitiDev @.***> wrote:

sao lại có 15 điểm =))

— Reply to this email directly, view it on GitHub https://github.com/luyencode/comments/issues/759#issuecomment-1181478163, or unsubscribe https://github.com/notifications/unsubscribe-auth/AYSZIF3HVL3RST4P5MGGRWTVTUUVHANCNFSM5QSBXLUA . You are receiving this because you commented.Message ID: @.***>

khanhkunji commented 1 year ago

14/15 :)) chay 4ms :))

danh2006 commented 1 year 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 #define ll long long using namespace std; int main(){ ll n; cin >> n; cout << "0" << " " << "1" << " " << n-1 << endl; }