結果

問題 No.1585 Cubic Number
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-08 22:21:06
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 167 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 86,892 KB
実行使用メモリ 75,988 KB
最終ジャッジ日時 2023-09-14 05:59:28
合計ジャッジ時間 3,814 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,752 KB
testcase_01 AC 68 ms
71,312 KB
testcase_02 AC 75 ms
75,604 KB
testcase_03 AC 73 ms
75,712 KB
testcase_04 AC 74 ms
75,988 KB
testcase_05 AC 74 ms
75,748 KB
testcase_06 AC 75 ms
75,604 KB
testcase_07 AC 73 ms
75,724 KB
testcase_08 AC 67 ms
71,244 KB
testcase_09 AC 68 ms
71,056 KB
testcase_10 AC 69 ms
71,276 KB
testcase_11 AC 68 ms
71,324 KB
testcase_12 AC 73 ms
75,520 KB
testcase_13 AC 71 ms
75,888 KB
testcase_14 AC 74 ms
75,816 KB
testcase_15 AC 74 ms
75,744 KB
testcase_16 AC 72 ms
75,688 KB
testcase_17 AC 76 ms
75,612 KB
testcase_18 AC 73 ms
75,892 KB
testcase_19 AC 71 ms
75,652 KB
testcase_20 AC 71 ms
75,668 KB
testcase_21 AC 74 ms
75,592 KB
testcase_22 AC 73 ms
75,616 KB
testcase_23 AC 73 ms
75,876 KB
testcase_24 AC 76 ms
75,684 KB
testcase_25 AC 74 ms
75,876 KB
testcase_26 AC 74 ms
75,516 KB
testcase_27 AC 73 ms
75,652 KB
testcase_28 AC 68 ms
71,300 KB
testcase_29 AC 74 ms
75,648 KB
testcase_30 AC 73 ms
75,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

N = int(input())

for i in range(10**6+1):
    if i ** 3 == N:
        print ("Yes")
        break
else:
    print ("No")
0