結果

問題 No.1585 Cubic Number
ユーザー mesame3993mesame3993
提出日時 2021-09-26 20:11:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 294 ms / 1,000 ms
コード長 100 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 177,596 KB
最終ジャッジ日時 2024-07-05 16:57:44
合計ジャッジ時間 10,543 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
177,016 KB
testcase_01 AC 282 ms
177,340 KB
testcase_02 AC 276 ms
177,380 KB
testcase_03 AC 272 ms
177,076 KB
testcase_04 AC 277 ms
177,076 KB
testcase_05 AC 294 ms
177,204 KB
testcase_06 AC 263 ms
176,956 KB
testcase_07 AC 279 ms
177,592 KB
testcase_08 AC 290 ms
177,340 KB
testcase_09 AC 279 ms
177,052 KB
testcase_10 AC 292 ms
177,044 KB
testcase_11 AC 283 ms
177,212 KB
testcase_12 AC 278 ms
177,084 KB
testcase_13 AC 272 ms
177,592 KB
testcase_14 AC 274 ms
177,336 KB
testcase_15 AC 279 ms
176,912 KB
testcase_16 AC 284 ms
176,948 KB
testcase_17 AC 288 ms
177,208 KB
testcase_18 AC 284 ms
177,592 KB
testcase_19 AC 273 ms
177,372 KB
testcase_20 AC 286 ms
177,592 KB
testcase_21 AC 281 ms
176,908 KB
testcase_22 AC 291 ms
176,956 KB
testcase_23 AC 271 ms
177,084 KB
testcase_24 AC 270 ms
177,340 KB
testcase_25 AC 285 ms
176,956 KB
testcase_26 AC 261 ms
177,596 KB
testcase_27 AC 287 ms
176,952 KB
testcase_28 AC 284 ms
176,956 KB
testcase_29 AC 272 ms
177,468 KB
testcase_30 AC 271 ms
177,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = set()
for i in range(1, 1000001):
	A |= {i**3}
print('Yes' if n in A else 'No')
0