結果

問題 No.1585 Cubic Number
ユーザー Yoshitada IkedaYoshitada Ikeda
提出日時 2023-01-03 09:33:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 497 ms / 1,000 ms
コード長 149 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 44,416 KB
最終ジャッジ日時 2024-11-27 01:45:24
合計ジャッジ時間 18,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 497 ms
43,912 KB
testcase_01 AC 479 ms
44,032 KB
testcase_02 AC 497 ms
43,780 KB
testcase_03 AC 474 ms
43,764 KB
testcase_04 AC 469 ms
44,416 KB
testcase_05 AC 466 ms
43,788 KB
testcase_06 AC 467 ms
43,784 KB
testcase_07 AC 472 ms
43,780 KB
testcase_08 AC 476 ms
44,276 KB
testcase_09 AC 476 ms
44,164 KB
testcase_10 AC 465 ms
44,156 KB
testcase_11 AC 473 ms
43,896 KB
testcase_12 AC 476 ms
43,768 KB
testcase_13 AC 491 ms
44,032 KB
testcase_14 AC 468 ms
43,780 KB
testcase_15 AC 467 ms
44,072 KB
testcase_16 AC 462 ms
43,896 KB
testcase_17 AC 475 ms
44,168 KB
testcase_18 AC 469 ms
43,780 KB
testcase_19 AC 473 ms
43,776 KB
testcase_20 AC 467 ms
43,788 KB
testcase_21 AC 463 ms
43,764 KB
testcase_22 AC 462 ms
44,044 KB
testcase_23 AC 472 ms
44,292 KB
testcase_24 AC 464 ms
43,780 KB
testcase_25 AC 472 ms
44,164 KB
testcase_26 AC 461 ms
44,036 KB
testcase_27 AC 470 ms
43,904 KB
testcase_28 AC 479 ms
43,772 KB
testcase_29 AC 474 ms
44,036 KB
testcase_30 AC 470 ms
44,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy

n = int(input())

s = int(n ** (1/3))

if s ** 3 == n:
    print("Yes")
elif (s+1) ** 3 == n:
    print("Yes")
else:
    print("No")


0