結果

問題 No.1585 Cubic Number
ユーザー 河野竜也河野竜也
提出日時 2021-09-03 14:19:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 617 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 90,036 KB
最終ジャッジ日時 2024-12-14 22:50:46
合計ジャッジ時間 20,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 600 ms
89,900 KB
testcase_01 AC 596 ms
89,908 KB
testcase_02 AC 610 ms
89,904 KB
testcase_03 AC 596 ms
89,908 KB
testcase_04 AC 604 ms
89,904 KB
testcase_05 AC 609 ms
89,908 KB
testcase_06 AC 610 ms
89,904 KB
testcase_07 AC 607 ms
90,036 KB
testcase_08 AC 592 ms
89,776 KB
testcase_09 AC 604 ms
89,776 KB
testcase_10 AC 594 ms
90,036 KB
testcase_11 AC 591 ms
89,908 KB
testcase_12 AC 610 ms
89,776 KB
testcase_13 AC 609 ms
89,904 KB
testcase_14 AC 612 ms
89,780 KB
testcase_15 AC 615 ms
89,908 KB
testcase_16 AC 598 ms
89,904 KB
testcase_17 AC 599 ms
89,904 KB
testcase_18 AC 600 ms
89,944 KB
testcase_19 AC 597 ms
89,780 KB
testcase_20 AC 598 ms
90,036 KB
testcase_21 AC 595 ms
90,032 KB
testcase_22 AC 613 ms
89,908 KB
testcase_23 AC 598 ms
89,784 KB
testcase_24 AC 617 ms
89,908 KB
testcase_25 AC 607 ms
89,908 KB
testcase_26 AC 592 ms
89,872 KB
testcase_27 AC 600 ms
90,036 KB
testcase_28 AC 613 ms
90,032 KB
testcase_29 AC 597 ms
89,908 KB
testcase_30 AC 603 ms
90,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=set()
for i in range(1,10**6+1):
  a.add(i**3)
n=int(input())
if n in a:
  print("Yes")
else:
  print("No")
0