結果

問題 No.1585 Cubic Number
ユーザー 👑 KazunKazun
提出日時 2021-07-08 22:20:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 84 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 66,576 KB
最終ジャッジ日時 2024-07-01 13:29:50
合計ジャッジ時間 2,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
66,032 KB
testcase_01 AC 44 ms
65,416 KB
testcase_02 AC 46 ms
66,576 KB
testcase_03 AC 45 ms
65,808 KB
testcase_04 AC 45 ms
65,956 KB
testcase_05 AC 46 ms
65,004 KB
testcase_06 AC 46 ms
65,732 KB
testcase_07 AC 46 ms
65,528 KB
testcase_08 AC 45 ms
64,956 KB
testcase_09 AC 46 ms
65,492 KB
testcase_10 AC 45 ms
65,000 KB
testcase_11 AC 46 ms
66,524 KB
testcase_12 AC 46 ms
65,188 KB
testcase_13 AC 45 ms
65,228 KB
testcase_14 AC 46 ms
65,152 KB
testcase_15 AC 47 ms
65,708 KB
testcase_16 AC 47 ms
65,964 KB
testcase_17 AC 46 ms
64,884 KB
testcase_18 AC 45 ms
64,976 KB
testcase_19 AC 46 ms
65,640 KB
testcase_20 AC 45 ms
65,688 KB
testcase_21 AC 46 ms
66,284 KB
testcase_22 AC 46 ms
65,636 KB
testcase_23 AC 46 ms
65,620 KB
testcase_24 AC 46 ms
65,692 KB
testcase_25 AC 46 ms
65,804 KB
testcase_26 AC 46 ms
66,068 KB
testcase_27 AC 47 ms
65,976 KB
testcase_28 AC 44 ms
65,324 KB
testcase_29 AC 45 ms
65,132 KB
testcase_30 AC 45 ms
64,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

X=[x*x*x for x in range(10**6+1)]

print("Yes" if N in X else "No")
0