結果

問題 No.1585 Cubic Number
ユーザー 👑 KazunKazun
提出日時 2021-07-08 22:20:37
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 95 ms / 1,000 ms
コード長 84 bytes
コンパイル時間 431 ms
使用メモリ 88,116 KB
最終ジャッジ日時 2023-02-01 19:46:41
合計ジャッジ時間 4,618 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 94 ms
87,896 KB
testcase_01 AC 92 ms
88,024 KB
testcase_02 AC 92 ms
87,976 KB
testcase_03 AC 91 ms
87,700 KB
testcase_04 AC 94 ms
87,812 KB
testcase_05 AC 94 ms
87,808 KB
testcase_06 AC 93 ms
87,704 KB
testcase_07 AC 91 ms
87,816 KB
testcase_08 AC 91 ms
88,028 KB
testcase_09 AC 91 ms
87,720 KB
testcase_10 AC 92 ms
87,976 KB
testcase_11 AC 92 ms
87,948 KB
testcase_12 AC 93 ms
88,000 KB
testcase_13 AC 92 ms
87,840 KB
testcase_14 AC 92 ms
88,116 KB
testcase_15 AC 93 ms
87,976 KB
testcase_16 AC 91 ms
87,948 KB
testcase_17 AC 93 ms
87,864 KB
testcase_18 AC 93 ms
88,040 KB
testcase_19 AC 93 ms
88,020 KB
testcase_20 AC 95 ms
87,740 KB
testcase_21 AC 93 ms
87,704 KB
testcase_22 AC 91 ms
87,884 KB
testcase_23 AC 91 ms
87,860 KB
testcase_24 AC 94 ms
87,712 KB
testcase_25 AC 93 ms
87,808 KB
testcase_26 AC 93 ms
88,040 KB
testcase_27 AC 93 ms
87,812 KB
testcase_28 AC 92 ms
87,976 KB
testcase_29 AC 91 ms
87,700 KB
testcase_30 AC 93 ms
87,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

X=[x*x*x for x in range(10**6+1)]

print("Yes" if N in X else "No")
0