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/TRIANGLE #416

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

Chi tiết bài tập - Luyện Code Online

https://luyencode.net/problem/TRIANGLE

tuankietcoderr commented 3 years ago

Code AC của mình, siêu cơ bản luôn nha mấy bạn:

#include <bits/stdc++.h>
using namespace std;

int main(){
    int a,b;
    cin>>b>>a;
    cout<<ceil((2*a)*1.0/b);
}
NguyenTrong17070 commented 1 year ago

include <bits/stdc++.h>

define int long long int

define goodspeed ios_base :: sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);

using namespace std; signed main(){ goodspeed; int a, b; cin >> b >> a; int h = ceil((2.0 * a) / b); cout << h; }