結果

問題 No.1585 Cubic Number
ユーザー googol_S0googol_S0
提出日時 2021-07-08 22:57:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 1,000 ms
コード長 99 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 86,844 KB
実行使用メモリ 76,408 KB
最終ジャッジ日時 2023-09-14 06:10:19
合計ジャッジ時間 10,416 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
76,020 KB
testcase_01 AC 68 ms
71,292 KB
testcase_02 AC 352 ms
76,184 KB
testcase_03 AC 339 ms
76,056 KB
testcase_04 AC 362 ms
76,212 KB
testcase_05 AC 365 ms
76,164 KB
testcase_06 AC 364 ms
76,264 KB
testcase_07 AC 364 ms
76,172 KB
testcase_08 AC 72 ms
71,024 KB
testcase_09 AC 72 ms
71,276 KB
testcase_10 AC 71 ms
71,168 KB
testcase_11 AC 69 ms
71,432 KB
testcase_12 AC 74 ms
75,600 KB
testcase_13 AC 73 ms
75,508 KB
testcase_14 AC 75 ms
75,464 KB
testcase_15 AC 362 ms
76,408 KB
testcase_16 AC 353 ms
76,164 KB
testcase_17 AC 369 ms
76,336 KB
testcase_18 AC 361 ms
76,376 KB
testcase_19 AC 358 ms
76,176 KB
testcase_20 AC 344 ms
76,216 KB
testcase_21 AC 348 ms
76,064 KB
testcase_22 AC 339 ms
76,344 KB
testcase_23 AC 341 ms
76,256 KB
testcase_24 AC 343 ms
76,192 KB
testcase_25 AC 340 ms
76,180 KB
testcase_26 AC 356 ms
76,252 KB
testcase_27 AC 360 ms
76,208 KB
testcase_28 AC 70 ms
71,304 KB
testcase_29 AC 340 ms
76,184 KB
testcase_30 AC 74 ms
75,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for i in range(10**7):
  if i*i*i==N:
    print('Yes')
    break
else:
  print('No')
0