結果

問題 No.1585 Cubic Number
ユーザー kohei2019kohei2019
提出日時 2022-06-22 23:42:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 128 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 59,300 KB
最終ジャッジ日時 2024-11-06 10:29:34
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,672 KB
testcase_01 AC 38 ms
52,996 KB
testcase_02 AC 44 ms
57,892 KB
testcase_03 AC 43 ms
58,260 KB
testcase_04 AC 44 ms
57,456 KB
testcase_05 AC 44 ms
58,716 KB
testcase_06 AC 46 ms
58,428 KB
testcase_07 AC 45 ms
59,172 KB
testcase_08 AC 37 ms
52,680 KB
testcase_09 AC 38 ms
51,984 KB
testcase_10 AC 38 ms
53,244 KB
testcase_11 AC 39 ms
53,972 KB
testcase_12 AC 43 ms
58,904 KB
testcase_13 AC 41 ms
57,588 KB
testcase_14 AC 43 ms
58,772 KB
testcase_15 AC 44 ms
58,056 KB
testcase_16 AC 43 ms
58,080 KB
testcase_17 AC 43 ms
57,780 KB
testcase_18 AC 44 ms
57,976 KB
testcase_19 AC 43 ms
58,652 KB
testcase_20 AC 43 ms
58,860 KB
testcase_21 AC 42 ms
57,828 KB
testcase_22 AC 44 ms
58,140 KB
testcase_23 AC 43 ms
58,120 KB
testcase_24 AC 43 ms
59,300 KB
testcase_25 AC 43 ms
58,328 KB
testcase_26 AC 44 ms
58,700 KB
testcase_27 AC 44 ms
58,936 KB
testcase_28 AC 39 ms
52,488 KB
testcase_29 AC 43 ms
58,212 KB
testcase_30 AC 42 ms
59,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ll = []
for i in range(1,10**6+1):
    if i ** 3 == N:
        print('Yes')
        break
else:
    print('No')
0