結果
問題 | No.1585 Cubic Number |
ユーザー | tsuchida mizuki |
提出日時 | 2021-07-08 23:35:43 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 279 bytes |
コンパイル時間 | 1,648 ms |
コンパイル使用メモリ | 165,840 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 13:45:33 |
合計ジャッジ時間 | 2,596 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include <bits/stdc++.h> using namespace std; long long n; int main(){ cin >> n; bool ans = false; for(long long i=floor(sqrt(sqrt(n))); i*i*i <= n; i++){ if(i*i*i == n) ans = true; } if(ans) cout << "Yes" << endl; else cout << "No" << endl; }