結果

問題 No.1585 Cubic Number
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-07-08 22:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 1,000 ms
コード長 107 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 86,916 KB
実行使用メモリ 75,920 KB
最終ジャッジ日時 2023-09-14 06:05:19
合計ジャッジ時間 3,941 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,920 KB
testcase_01 AC 76 ms
75,676 KB
testcase_02 AC 76 ms
75,608 KB
testcase_03 AC 78 ms
75,524 KB
testcase_04 AC 76 ms
75,596 KB
testcase_05 AC 76 ms
75,748 KB
testcase_06 AC 73 ms
75,552 KB
testcase_07 AC 78 ms
75,920 KB
testcase_08 AC 77 ms
75,700 KB
testcase_09 AC 80 ms
75,748 KB
testcase_10 AC 76 ms
75,768 KB
testcase_11 AC 76 ms
75,564 KB
testcase_12 AC 76 ms
75,856 KB
testcase_13 AC 77 ms
75,812 KB
testcase_14 AC 77 ms
75,768 KB
testcase_15 AC 74 ms
75,912 KB
testcase_16 AC 74 ms
75,532 KB
testcase_17 AC 74 ms
75,528 KB
testcase_18 AC 76 ms
75,752 KB
testcase_19 AC 74 ms
75,708 KB
testcase_20 AC 75 ms
75,724 KB
testcase_21 AC 75 ms
75,560 KB
testcase_22 AC 71 ms
75,784 KB
testcase_23 AC 78 ms
75,712 KB
testcase_24 AC 70 ms
75,564 KB
testcase_25 AC 75 ms
75,900 KB
testcase_26 AC 77 ms
75,556 KB
testcase_27 AC 77 ms
75,752 KB
testcase_28 AC 76 ms
75,568 KB
testcase_29 AC 77 ms
75,616 KB
testcase_30 AC 76 ms
75,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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