結果
| 問題 |
No.1585 Cubic Number
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-09-18 16:42:53 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 490 bytes |
| コンパイル時間 | 732 ms |
| コンパイル使用メモリ | 91,584 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-30 14:09:29 |
| 合計ジャッジ時間 | 1,858 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 8 WA * 20 |
ソースコード
#include<iostream>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<ios>
#include<iomanip>
#include<cmath>
#include<limits>
#include<algorithm>
using namespace std;
int MAX = 1000000;
int main(){
long long n;
cin >> n;
for(int i=1; i<=MAX; i++){
long long tmp = (1LL*i)*(1LL*1)*(1LL*i);
if(tmp = n){
cout << "Yes" << endl;
return 0;
}else{
cout << "No" << endl;
}
}
return 0;
}