結果

問題 No.1585 Cubic Number
ユーザー IgrmiIgrmi
提出日時 2021-07-08 22:22:05
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 256 ms
使用メモリ 80,520 KB
最終ジャッジ日時 2023-02-01 19:57:12
合計ジャッジ時間 4,381 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 83 ms
80,184 KB
testcase_01 AC 76 ms
75,748 KB
testcase_02 AC 81 ms
80,140 KB
testcase_03 AC 88 ms
80,228 KB
testcase_04 AC 84 ms
80,328 KB
testcase_05 AC 84 ms
80,520 KB
testcase_06 AC 84 ms
80,196 KB
testcase_07 AC 84 ms
80,420 KB
testcase_08 AC 79 ms
75,820 KB
testcase_09 AC 79 ms
75,784 KB
testcase_10 AC 79 ms
75,676 KB
testcase_11 AC 78 ms
75,844 KB
testcase_12 AC 84 ms
80,372 KB
testcase_13 AC 83 ms
80,136 KB
testcase_14 AC 83 ms
80,084 KB
testcase_15 AC 82 ms
80,260 KB
testcase_16 AC 84 ms
80,424 KB
testcase_17 AC 84 ms
80,192 KB
testcase_18 AC 83 ms
80,100 KB
testcase_19 AC 84 ms
80,384 KB
testcase_20 AC 84 ms
80,520 KB
testcase_21 AC 84 ms
80,136 KB
testcase_22 AC 86 ms
80,144 KB
testcase_23 AC 84 ms
80,376 KB
testcase_24 AC 84 ms
80,316 KB
testcase_25 AC 83 ms
80,184 KB
testcase_26 AC 84 ms
80,140 KB
testcase_27 AC 85 ms
80,192 KB
testcase_28 AC 82 ms
75,528 KB
testcase_29 AC 84 ms
80,088 KB
testcase_30 AC 84 ms
80,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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