結果

問題 No.1585 Cubic Number
ユーザー SPD_9X2SPD_9X2
提出日時 2021-07-08 22:21:06
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 90 ms / 1,000 ms
コード長 167 bytes
コンパイル時間 255 ms
使用メモリ 80,664 KB
最終ジャッジ日時 2023-02-01 19:52:07
合計ジャッジ時間 4,425 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 88 ms
80,104 KB
testcase_01 AC 83 ms
75,688 KB
testcase_02 AC 90 ms
80,612 KB
testcase_03 AC 88 ms
80,296 KB
testcase_04 AC 89 ms
80,304 KB
testcase_05 AC 88 ms
80,336 KB
testcase_06 AC 87 ms
80,292 KB
testcase_07 AC 89 ms
80,664 KB
testcase_08 AC 83 ms
75,688 KB
testcase_09 AC 84 ms
75,724 KB
testcase_10 AC 82 ms
75,920 KB
testcase_11 AC 83 ms
75,816 KB
testcase_12 AC 88 ms
80,452 KB
testcase_13 AC 86 ms
80,344 KB
testcase_14 AC 86 ms
80,112 KB
testcase_15 AC 87 ms
80,472 KB
testcase_16 AC 87 ms
80,112 KB
testcase_17 AC 87 ms
80,468 KB
testcase_18 AC 89 ms
80,296 KB
testcase_19 AC 88 ms
80,312 KB
testcase_20 AC 88 ms
80,108 KB
testcase_21 AC 87 ms
80,308 KB
testcase_22 AC 88 ms
80,460 KB
testcase_23 AC 86 ms
80,300 KB
testcase_24 AC 88 ms
80,424 KB
testcase_25 AC 86 ms
80,308 KB
testcase_26 AC 89 ms
80,464 KB
testcase_27 AC 89 ms
80,304 KB
testcase_28 AC 83 ms
75,428 KB
testcase_29 AC 88 ms
80,364 KB
testcase_30 AC 87 ms
80,264 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