結果

問題 No.1585 Cubic Number
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-08 22:21:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 167 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 59,456 KB
最終ジャッジ日時 2024-07-01 13:34:33
合計ジャッジ時間 2,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,448 KB
testcase_01 AC 39 ms
52,616 KB
testcase_02 AC 44 ms
58,960 KB
testcase_03 AC 43 ms
57,192 KB
testcase_04 AC 44 ms
57,388 KB
testcase_05 AC 44 ms
59,204 KB
testcase_06 AC 43 ms
58,256 KB
testcase_07 AC 44 ms
58,396 KB
testcase_08 AC 38 ms
52,288 KB
testcase_09 AC 38 ms
52,552 KB
testcase_10 AC 38 ms
51,756 KB
testcase_11 AC 38 ms
52,492 KB
testcase_12 AC 42 ms
58,440 KB
testcase_13 AC 41 ms
58,052 KB
testcase_14 AC 42 ms
57,800 KB
testcase_15 AC 43 ms
58,260 KB
testcase_16 AC 42 ms
57,920 KB
testcase_17 AC 43 ms
58,436 KB
testcase_18 AC 43 ms
58,328 KB
testcase_19 AC 43 ms
58,804 KB
testcase_20 AC 43 ms
58,640 KB
testcase_21 AC 43 ms
58,444 KB
testcase_22 AC 43 ms
58,132 KB
testcase_23 AC 44 ms
58,248 KB
testcase_24 AC 42 ms
58,856 KB
testcase_25 AC 43 ms
58,252 KB
testcase_26 AC 41 ms
58,312 KB
testcase_27 AC 42 ms
58,620 KB
testcase_28 AC 38 ms
52,364 KB
testcase_29 AC 42 ms
59,456 KB
testcase_30 AC 42 ms
58,720 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