結果

問題 No.1585 Cubic Number
ユーザー IgrmiIgrmi
提出日時 2021-07-08 22:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 58,920 KB
最終ジャッジ日時 2024-07-01 13:37:52
合計ジャッジ時間 2,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,264 KB
testcase_01 AC 38 ms
52,440 KB
testcase_02 AC 43 ms
58,376 KB
testcase_03 AC 43 ms
57,380 KB
testcase_04 AC 43 ms
58,512 KB
testcase_05 AC 42 ms
57,940 KB
testcase_06 AC 42 ms
57,408 KB
testcase_07 AC 43 ms
57,428 KB
testcase_08 AC 38 ms
52,876 KB
testcase_09 AC 39 ms
53,100 KB
testcase_10 AC 38 ms
53,364 KB
testcase_11 AC 38 ms
52,232 KB
testcase_12 AC 43 ms
57,260 KB
testcase_13 AC 42 ms
57,652 KB
testcase_14 AC 43 ms
58,216 KB
testcase_15 AC 44 ms
58,920 KB
testcase_16 AC 44 ms
57,120 KB
testcase_17 AC 44 ms
58,120 KB
testcase_18 AC 44 ms
58,164 KB
testcase_19 AC 44 ms
57,440 KB
testcase_20 AC 44 ms
58,380 KB
testcase_21 AC 45 ms
57,996 KB
testcase_22 AC 45 ms
58,552 KB
testcase_23 AC 45 ms
57,548 KB
testcase_24 AC 45 ms
57,672 KB
testcase_25 AC 45 ms
57,580 KB
testcase_26 AC 45 ms
57,524 KB
testcase_27 AC 43 ms
58,664 KB
testcase_28 AC 37 ms
52,300 KB
testcase_29 AC 44 ms
58,636 KB
testcase_30 AC 45 ms
58,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(1, 10 ** 6 + 1):
    if i * i * i == N:
        print('Yes')
        exit()
print('No')
0