結果

問題 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  
実行時間 475 ms / 1,000 ms
コード長 149 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,428 KB
最終ジャッジ日時 2024-05-05 07:05:25
合計ジャッジ時間 16,874 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
43,916 KB
testcase_01 AC 444 ms
44,164 KB
testcase_02 AC 448 ms
44,296 KB
testcase_03 AC 461 ms
43,908 KB
testcase_04 AC 448 ms
44,428 KB
testcase_05 AC 445 ms
43,908 KB
testcase_06 AC 455 ms
44,424 KB
testcase_07 AC 450 ms
44,304 KB
testcase_08 AC 446 ms
43,928 KB
testcase_09 AC 474 ms
43,908 KB
testcase_10 AC 442 ms
44,276 KB
testcase_11 AC 443 ms
44,288 KB
testcase_12 AC 445 ms
44,020 KB
testcase_13 AC 449 ms
43,912 KB
testcase_14 AC 472 ms
44,012 KB
testcase_15 AC 454 ms
44,044 KB
testcase_16 AC 460 ms
44,164 KB
testcase_17 AC 452 ms
44,292 KB
testcase_18 AC 451 ms
44,032 KB
testcase_19 AC 448 ms
43,908 KB
testcase_20 AC 446 ms
44,288 KB
testcase_21 AC 444 ms
43,904 KB
testcase_22 AC 448 ms
43,916 KB
testcase_23 AC 446 ms
44,040 KB
testcase_24 AC 460 ms
44,388 KB
testcase_25 AC 475 ms
43,920 KB
testcase_26 AC 448 ms
44,420 KB
testcase_27 AC 450 ms
44,416 KB
testcase_28 AC 457 ms
44,044 KB
testcase_29 AC 452 ms
43,904 KB
testcase_30 AC 453 ms
44,164 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