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/SCP #699

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

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

https://luyencode.net/problem/SCP

chatctt commented 2 years ago

Kiệt code dạo.

Xem code AC

#include #include using namespace std; int main() { int t; cin>>t; while(t--) { long long n; cin>>n; cout<<(long long)sqrt(n)<

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(){ int t; cin >> t; while(t--){ ll n; cin >> n; cout << (ll)sqrt(n) << endl; } }