結果
問題 | No.1585 Cubic Number |
ユーザー | shiomusubi496 |
提出日時 | 2021-07-08 22:21:58 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 188 bytes |
コンパイル時間 | 1,858 ms |
コンパイル使用メモリ | 191,232 KB |
最終ジャッジ日時 | 2025-01-22 18:24:12 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ int N; cin>>N; int i=1; for(;i*i*i<N;i++); if(i*i*i==N)puts("Yes"); else puts("No"); }