結果

問題 No.1585 Cubic Number
ユーザー playerplayer
提出日時 2023-12-27 23:17:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 110 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 59,612 KB
最終ジャッジ日時 2024-09-27 15:35:50
合計ジャッジ時間 2,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,856 KB
testcase_01 AC 39 ms
52,332 KB
testcase_02 AC 44 ms
58,168 KB
testcase_03 AC 46 ms
57,920 KB
testcase_04 AC 46 ms
59,612 KB
testcase_05 AC 46 ms
58,176 KB
testcase_06 AC 45 ms
57,672 KB
testcase_07 AC 46 ms
58,848 KB
testcase_08 AC 40 ms
52,624 KB
testcase_09 AC 40 ms
52,816 KB
testcase_10 AC 39 ms
52,972 KB
testcase_11 AC 40 ms
52,204 KB
testcase_12 AC 43 ms
58,764 KB
testcase_13 AC 43 ms
58,212 KB
testcase_14 AC 44 ms
57,384 KB
testcase_15 AC 44 ms
57,388 KB
testcase_16 AC 45 ms
57,308 KB
testcase_17 AC 44 ms
58,388 KB
testcase_18 AC 46 ms
57,772 KB
testcase_19 AC 45 ms
58,204 KB
testcase_20 AC 45 ms
57,792 KB
testcase_21 AC 44 ms
58,868 KB
testcase_22 AC 45 ms
57,376 KB
testcase_23 AC 43 ms
57,468 KB
testcase_24 AC 43 ms
57,788 KB
testcase_25 AC 44 ms
58,176 KB
testcase_26 AC 45 ms
57,952 KB
testcase_27 AC 43 ms
59,244 KB
testcase_28 AC 38 ms
53,304 KB
testcase_29 AC 44 ms
57,792 KB
testcase_30 AC 45 ms
58,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

for i in range(1,10**6+1):
    if i**3 == n:
        print("Yes")
        exit()
print("No")
0