結果

問題 No.1585 Cubic Number
ユーザー Daniel MurphyDaniel Murphy
提出日時 2021-07-08 22:25:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 377 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 165,808 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 13:40:52
合計ジャッジ時間 2,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long

void solve() {
	ll n; cin >> n;
	ll r = pow(n, 1.0 / 3.0);
	for (ll i = r - 2; i <= r + 2; ++i) {
		if (i * i * i == n) {
			cout << "Yes\n";
			return;
		}
	}
	cout << "No\n";
	return;
}

int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);

	ll t = 1;
	//cin >> t;
	while (t--) {
		solve();
	}

	return 0;
}
0