結果

問題 No.1585 Cubic Number
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-07-08 22:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 107 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 59,268 KB
最終ジャッジ日時 2024-07-01 13:39:36
合計ジャッジ時間 2,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,352 KB
testcase_01 AC 43 ms
58,376 KB
testcase_02 AC 43 ms
57,272 KB
testcase_03 AC 43 ms
58,724 KB
testcase_04 AC 44 ms
58,268 KB
testcase_05 AC 44 ms
57,264 KB
testcase_06 AC 44 ms
57,928 KB
testcase_07 AC 43 ms
58,728 KB
testcase_08 AC 43 ms
58,600 KB
testcase_09 AC 43 ms
58,136 KB
testcase_10 AC 43 ms
57,664 KB
testcase_11 AC 43 ms
58,328 KB
testcase_12 AC 44 ms
58,212 KB
testcase_13 AC 44 ms
58,172 KB
testcase_14 AC 45 ms
59,268 KB
testcase_15 AC 43 ms
58,656 KB
testcase_16 AC 43 ms
58,520 KB
testcase_17 AC 43 ms
58,728 KB
testcase_18 AC 42 ms
58,012 KB
testcase_19 AC 43 ms
57,792 KB
testcase_20 AC 44 ms
58,064 KB
testcase_21 AC 43 ms
58,072 KB
testcase_22 AC 44 ms
58,924 KB
testcase_23 AC 43 ms
57,732 KB
testcase_24 AC 43 ms
58,080 KB
testcase_25 AC 44 ms
57,928 KB
testcase_26 AC 43 ms
59,176 KB
testcase_27 AC 43 ms
57,636 KB
testcase_28 AC 43 ms
58,444 KB
testcase_29 AC 43 ms
58,148 KB
testcase_30 AC 43 ms
57,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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