Beginner Free Contest 23 - POWER3

View as PDF

Submit solution

Points: 0.10 (partial)
Time limit: 1.0s
Memory limit: 256M

Problem type
Allowed languages
C, C++, Go, Java, Kotlin, Pascal, PyPy, Python, Rust, Scratch

In case the statement didn't load correctly, you can download the statement here: Statement

Lưu ý: các bạn không nhập, xuất dữ liệu bằng file kể cả khi đề bài có yêu cầu. Đọc, ghi dữ liệu được thực hiện ở stdin và stdout.


Comments

Please read the guidelines before commenting.



  • -3
    hieuminh0157  commented on June 19, 2024, 2:06 a.m.

    include <iostream>

    #include <cmath>
    
    std::string canArrangeMarbles(int n) {
        // Calculate the inverse of the triangular number formula
        double i = (std::sqrt(8 * static_cast<double>(n) + 1) - 1) / 2;
        // Check if i is an integer
        if (i == static_cast<int>(i)) {
            return "Yes.";
        } else {
            return "No.";
        }
    }
    
    int main() {
        int n;
        std::cin >> n;
        std::cout << canArrangeMarbles(n) << std::endl;
        return 0;
    }
    

  • 1
    PizzaPasta  commented on Dec. 13, 2023, 11:31 a.m.

    sao minh dung cbrt() trg C++ ma wa v?


    • 0
      tranhonghaidepzai2009  commented on July 9, 2024, 4:37 a.m.

      BẠN PHẢI LÀM TRÒN NỮA NHÉ

      include <iostream>

      include <math.h>

      using namespace std;

      define int long long

      int t; main() { ios::syncwithstdio(false); cin.tie(nullptr);cout.tie(nullptr);

      cin >> t;
      while(t--)
      {
          int n;
          cin >> n;
          if(round(cbrt(n)) * round(cbrt(n)) * round(cbrt(n)) == n)
              cout << "YES" << '\n';
          else
              cout << "NO" << '\n';
      }
      /* Trần Hồng Hải UwU */
      

      }


  • 0
    minhquantran  commented on July 26, 2023, 7:49 a.m.

    làm kiểu j v mọi người bằng ngôn ngữ python


  • 6
    dylantamau  commented on Oct. 31, 2021, 12:38 p.m.

    HINT

    Sử dụng chặt nhị phân. Đặt ~mid = (L+R) \div 2~, nếu ~mid*mid*mid \le N~ thì ~L = mid + 1~, ngược lại ~R = mid -1~