結果

問題 No.1585 Cubic Number
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-07-08 22:23:14
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 85 ms / 1,000 ms
コード長 107 bytes
コンパイル時間 271 ms
使用メモリ 80,688 KB
最終ジャッジ日時 2023-02-01 19:59:25
合計ジャッジ時間 4,382 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 81 ms
80,688 KB
testcase_01 AC 82 ms
80,668 KB
testcase_02 AC 84 ms
80,136 KB
testcase_03 AC 83 ms
80,660 KB
testcase_04 AC 82 ms
80,428 KB
testcase_05 AC 83 ms
80,304 KB
testcase_06 AC 82 ms
80,464 KB
testcase_07 AC 83 ms
80,408 KB
testcase_08 AC 82 ms
80,348 KB
testcase_09 AC 81 ms
80,304 KB
testcase_10 AC 83 ms
80,456 KB
testcase_11 AC 83 ms
80,352 KB
testcase_12 AC 85 ms
80,448 KB
testcase_13 AC 84 ms
80,452 KB
testcase_14 AC 83 ms
80,604 KB
testcase_15 AC 81 ms
80,336 KB
testcase_16 AC 84 ms
80,332 KB
testcase_17 AC 84 ms
80,452 KB
testcase_18 AC 82 ms
80,508 KB
testcase_19 AC 83 ms
80,288 KB
testcase_20 AC 83 ms
80,464 KB
testcase_21 AC 83 ms
80,308 KB
testcase_22 AC 82 ms
80,308 KB
testcase_23 AC 83 ms
80,468 KB
testcase_24 AC 83 ms
80,232 KB
testcase_25 AC 82 ms
80,448 KB
testcase_26 AC 82 ms
80,460 KB
testcase_27 AC 82 ms
80,300 KB
testcase_28 AC 82 ms
80,112 KB
testcase_29 AC 83 ms
80,496 KB
testcase_30 AC 84 ms
80,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = "No"
for i in range(10 ** 6):
    if (i+1) ** 3 == n:
        ans = "Yes"
print(ans)
0