結果

問題 No.1585 Cubic Number
ユーザー kohei2019kohei2019
提出日時 2022-06-22 23:42:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 1,000 ms
コード長 128 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 87,232 KB
実行使用メモリ 76,020 KB
最終ジャッジ日時 2023-08-06 07:32:29
合計ジャッジ時間 4,833 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,952 KB
testcase_01 AC 70 ms
71,492 KB
testcase_02 AC 75 ms
75,844 KB
testcase_03 AC 84 ms
75,724 KB
testcase_04 AC 76 ms
75,872 KB
testcase_05 AC 75 ms
75,708 KB
testcase_06 AC 76 ms
75,860 KB
testcase_07 AC 78 ms
75,836 KB
testcase_08 AC 71 ms
71,344 KB
testcase_09 AC 70 ms
71,512 KB
testcase_10 AC 69 ms
71,344 KB
testcase_11 AC 69 ms
71,560 KB
testcase_12 AC 75 ms
75,708 KB
testcase_13 AC 74 ms
75,852 KB
testcase_14 AC 74 ms
75,888 KB
testcase_15 AC 75 ms
75,784 KB
testcase_16 AC 76 ms
75,708 KB
testcase_17 AC 75 ms
75,720 KB
testcase_18 AC 76 ms
76,020 KB
testcase_19 AC 76 ms
75,764 KB
testcase_20 AC 76 ms
75,884 KB
testcase_21 AC 76 ms
75,708 KB
testcase_22 AC 76 ms
75,840 KB
testcase_23 AC 77 ms
75,844 KB
testcase_24 AC 75 ms
75,768 KB
testcase_25 AC 74 ms
75,716 KB
testcase_26 AC 74 ms
75,712 KB
testcase_27 AC 74 ms
75,712 KB
testcase_28 AC 72 ms
71,380 KB
testcase_29 AC 75 ms
75,768 KB
testcase_30 AC 74 ms
75,864 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