結果

問題 No.1585 Cubic Number
ユーザー IgrmiIgrmi
提出日時 2021-07-08 22:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 87,008 KB
実行使用メモリ 75,752 KB
最終ジャッジ日時 2023-09-14 06:03:29
合計ジャッジ時間 3,894 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,584 KB
testcase_01 AC 70 ms
71,244 KB
testcase_02 AC 75 ms
75,544 KB
testcase_03 AC 75 ms
75,504 KB
testcase_04 AC 76 ms
75,752 KB
testcase_05 AC 75 ms
75,628 KB
testcase_06 AC 75 ms
75,596 KB
testcase_07 AC 75 ms
75,348 KB
testcase_08 AC 70 ms
71,252 KB
testcase_09 AC 71 ms
71,124 KB
testcase_10 AC 70 ms
71,392 KB
testcase_11 AC 70 ms
71,088 KB
testcase_12 AC 76 ms
75,624 KB
testcase_13 AC 76 ms
75,484 KB
testcase_14 AC 76 ms
75,356 KB
testcase_15 AC 77 ms
75,544 KB
testcase_16 AC 78 ms
75,500 KB
testcase_17 AC 76 ms
75,664 KB
testcase_18 AC 76 ms
75,472 KB
testcase_19 AC 75 ms
75,328 KB
testcase_20 AC 78 ms
75,352 KB
testcase_21 AC 78 ms
75,540 KB
testcase_22 AC 76 ms
75,500 KB
testcase_23 AC 77 ms
75,500 KB
testcase_24 AC 76 ms
75,480 KB
testcase_25 AC 78 ms
75,512 KB
testcase_26 AC 77 ms
75,400 KB
testcase_27 AC 77 ms
75,336 KB
testcase_28 AC 70 ms
71,228 KB
testcase_29 AC 76 ms
75,304 KB
testcase_30 AC 76 ms
75,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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