結果

問題 No.1585 Cubic Number
ユーザー harurunharurun
提出日時 2021-07-08 23:16:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 179 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 58,864 KB
最終ジャッジ日時 2024-07-01 13:44:54
合計ジャッジ時間 2,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,388 KB
testcase_01 AC 37 ms
52,832 KB
testcase_02 AC 43 ms
57,552 KB
testcase_03 AC 42 ms
57,796 KB
testcase_04 AC 44 ms
57,684 KB
testcase_05 AC 43 ms
57,252 KB
testcase_06 AC 43 ms
57,404 KB
testcase_07 AC 43 ms
57,860 KB
testcase_08 AC 37 ms
52,004 KB
testcase_09 AC 37 ms
52,104 KB
testcase_10 AC 38 ms
52,760 KB
testcase_11 AC 38 ms
51,756 KB
testcase_12 AC 42 ms
57,668 KB
testcase_13 AC 41 ms
57,744 KB
testcase_14 AC 41 ms
58,820 KB
testcase_15 AC 43 ms
58,864 KB
testcase_16 AC 43 ms
57,876 KB
testcase_17 AC 42 ms
57,744 KB
testcase_18 AC 42 ms
56,848 KB
testcase_19 AC 42 ms
57,668 KB
testcase_20 AC 42 ms
58,344 KB
testcase_21 AC 43 ms
58,596 KB
testcase_22 AC 43 ms
58,104 KB
testcase_23 AC 43 ms
57,920 KB
testcase_24 AC 42 ms
58,460 KB
testcase_25 AC 43 ms
57,836 KB
testcase_26 AC 42 ms
56,852 KB
testcase_27 AC 42 ms
57,344 KB
testcase_28 AC 38 ms
53,620 KB
testcase_29 AC 42 ms
57,908 KB
testcase_30 AC 42 ms
57,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#嘘通してすみませんでした。
def main():
  N=int(input())
  for i in range(1,10**6+1):
    if i*i*i==N:
      print("Yes")
      return
  print("No")
  return

main()
0