結果

問題 No.1585 Cubic Number
コンテスト
ユーザー 回転
提出日時 2025-11-14 16:15:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 1,000 ms
コード長 104 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 226,292 KB
最終ジャッジ日時 2025-11-14 16:15:17
合計ジャッジ時間 8,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

a = set()
for i in range(1,10**6+1):
    a.add(i*i*i)
print("Yes" if N in a else "No")
0