結果

問題 No.1585 Cubic Number
ユーザー AEnAEn
提出日時 2022-05-12 11:55:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 226,648 KB
最終ジャッジ日時 2024-07-20 04:54:39
合計ジャッジ時間 8,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
225,292 KB
testcase_01 AC 233 ms
225,116 KB
testcase_02 AC 223 ms
226,648 KB
testcase_03 AC 218 ms
225,576 KB
testcase_04 AC 228 ms
226,024 KB
testcase_05 AC 238 ms
225,384 KB
testcase_06 AC 224 ms
225,568 KB
testcase_07 AC 221 ms
224,676 KB
testcase_08 AC 233 ms
225,512 KB
testcase_09 AC 231 ms
226,004 KB
testcase_10 AC 231 ms
225,248 KB
testcase_11 AC 231 ms
226,232 KB
testcase_12 AC 239 ms
225,808 KB
testcase_13 AC 240 ms
226,632 KB
testcase_14 AC 234 ms
225,856 KB
testcase_15 AC 235 ms
225,484 KB
testcase_16 AC 228 ms
225,376 KB
testcase_17 AC 229 ms
225,488 KB
testcase_18 AC 231 ms
226,504 KB
testcase_19 AC 233 ms
225,544 KB
testcase_20 AC 236 ms
224,940 KB
testcase_21 AC 239 ms
225,104 KB
testcase_22 AC 223 ms
224,964 KB
testcase_23 AC 231 ms
224,984 KB
testcase_24 AC 229 ms
224,752 KB
testcase_25 AC 235 ms
224,796 KB
testcase_26 AC 227 ms
225,140 KB
testcase_27 AC 225 ms
224,672 KB
testcase_28 AC 237 ms
225,568 KB
testcase_29 AC 240 ms
225,676 KB
testcase_30 AC 233 ms
226,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
n = set()
for i in range(1,10**6+1):
    n.add(i**3)
if N in n:
    print('Yes')
else:
    print('No')
0