結果

問題 No.1585 Cubic Number
ユーザー shinichishinichi
提出日時 2021-07-08 22:32:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 126 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 59,652 KB
最終ジャッジ日時 2024-07-01 13:42:02
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,300 KB
testcase_01 AC 39 ms
53,128 KB
testcase_02 AC 44 ms
58,544 KB
testcase_03 AC 44 ms
58,280 KB
testcase_04 AC 44 ms
58,212 KB
testcase_05 AC 44 ms
58,696 KB
testcase_06 AC 44 ms
58,080 KB
testcase_07 AC 44 ms
59,652 KB
testcase_08 AC 38 ms
52,924 KB
testcase_09 AC 39 ms
52,268 KB
testcase_10 AC 38 ms
51,904 KB
testcase_11 AC 38 ms
52,280 KB
testcase_12 AC 43 ms
58,944 KB
testcase_13 AC 42 ms
57,944 KB
testcase_14 AC 42 ms
58,512 KB
testcase_15 AC 43 ms
58,116 KB
testcase_16 AC 43 ms
59,524 KB
testcase_17 AC 43 ms
57,700 KB
testcase_18 AC 43 ms
57,996 KB
testcase_19 AC 43 ms
57,776 KB
testcase_20 AC 43 ms
58,004 KB
testcase_21 AC 43 ms
58,984 KB
testcase_22 AC 43 ms
58,800 KB
testcase_23 AC 43 ms
57,576 KB
testcase_24 AC 43 ms
57,812 KB
testcase_25 AC 44 ms
58,836 KB
testcase_26 AC 44 ms
58,060 KB
testcase_27 AC 44 ms
58,540 KB
testcase_28 AC 38 ms
51,940 KB
testcase_29 AC 43 ms
59,064 KB
testcase_30 AC 43 ms
58,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, sys
n = int(input())
for i in range(10**6+1):
    if i**3==n:
        print('Yes')
        sys.exit()
print('No')
0