結果

問題 No.1585 Cubic Number
ユーザー teepeeteeteepeetee
提出日時 2021-07-18 16:09:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 102 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 90,032 KB
最終ジャッジ日時 2024-07-08 09:41:34
合計ジャッジ時間 14,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 424 ms
90,024 KB
testcase_01 WA -
testcase_02 AC 432 ms
89,768 KB
testcase_03 AC 422 ms
90,032 KB
testcase_04 AC 418 ms
89,908 KB
testcase_05 AC 423 ms
89,900 KB
testcase_06 AC 424 ms
89,764 KB
testcase_07 AC 423 ms
89,900 KB
testcase_08 AC 421 ms
89,772 KB
testcase_09 AC 422 ms
89,900 KB
testcase_10 AC 418 ms
89,772 KB
testcase_11 AC 426 ms
89,768 KB
testcase_12 AC 419 ms
89,768 KB
testcase_13 AC 419 ms
89,772 KB
testcase_14 AC 429 ms
89,772 KB
testcase_15 AC 418 ms
89,772 KB
testcase_16 AC 429 ms
89,772 KB
testcase_17 AC 422 ms
89,824 KB
testcase_18 AC 421 ms
89,768 KB
testcase_19 AC 418 ms
89,772 KB
testcase_20 AC 427 ms
89,768 KB
testcase_21 AC 424 ms
90,028 KB
testcase_22 AC 433 ms
89,896 KB
testcase_23 AC 436 ms
89,896 KB
testcase_24 AC 425 ms
90,028 KB
testcase_25 AC 426 ms
89,772 KB
testcase_26 AC 417 ms
89,904 KB
testcase_27 AC 426 ms
89,900 KB
testcase_28 AC 423 ms
90,028 KB
testcase_29 AC 424 ms
89,900 KB
testcase_30 AC 424 ms
90,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

x={ i**3 for i in range(2,10**6+1)}

if n in x:
    print('Yes')
else:
    print('No')
0