結果

問題 No.1585 Cubic Number
ユーザー 河野竜也河野竜也
提出日時 2021-09-03 14:19:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 680 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 90,160 KB
最終ジャッジ日時 2024-05-08 17:14:10
合計ジャッジ時間 21,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 629 ms
90,036 KB
testcase_01 AC 626 ms
90,028 KB
testcase_02 AC 644 ms
90,032 KB
testcase_03 AC 651 ms
90,160 KB
testcase_04 AC 638 ms
90,032 KB
testcase_05 AC 660 ms
90,036 KB
testcase_06 AC 638 ms
90,032 KB
testcase_07 AC 606 ms
90,036 KB
testcase_08 AC 613 ms
90,032 KB
testcase_09 AC 622 ms
90,040 KB
testcase_10 AC 634 ms
90,040 KB
testcase_11 AC 619 ms
90,160 KB
testcase_12 AC 659 ms
89,904 KB
testcase_13 AC 657 ms
90,036 KB
testcase_14 AC 667 ms
90,032 KB
testcase_15 AC 642 ms
89,908 KB
testcase_16 AC 630 ms
90,032 KB
testcase_17 AC 632 ms
90,032 KB
testcase_18 AC 615 ms
90,036 KB
testcase_19 AC 618 ms
90,032 KB
testcase_20 AC 619 ms
89,912 KB
testcase_21 AC 680 ms
90,092 KB
testcase_22 AC 657 ms
90,032 KB
testcase_23 AC 659 ms
89,904 KB
testcase_24 AC 643 ms
90,036 KB
testcase_25 AC 628 ms
90,032 KB
testcase_26 AC 631 ms
90,040 KB
testcase_27 AC 645 ms
90,032 KB
testcase_28 AC 633 ms
90,040 KB
testcase_29 AC 639 ms
90,036 KB
testcase_30 AC 676 ms
90,040 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