結果

問題 No.1585 Cubic Number
ユーザー titan23titan23
提出日時 2022-06-11 00:43:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 1,000 ms
コード長 183 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 226,452 KB
最終ジャッジ日時 2024-09-21 07:55:44
合計ジャッジ時間 8,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
225,588 KB
testcase_01 AC 221 ms
225,360 KB
testcase_02 AC 215 ms
225,224 KB
testcase_03 AC 218 ms
225,928 KB
testcase_04 AC 220 ms
225,580 KB
testcase_05 AC 221 ms
225,356 KB
testcase_06 AC 218 ms
225,756 KB
testcase_07 AC 212 ms
224,832 KB
testcase_08 AC 212 ms
225,704 KB
testcase_09 AC 214 ms
225,356 KB
testcase_10 AC 218 ms
225,804 KB
testcase_11 AC 215 ms
224,844 KB
testcase_12 AC 228 ms
225,256 KB
testcase_13 AC 219 ms
226,028 KB
testcase_14 AC 218 ms
225,492 KB
testcase_15 AC 223 ms
225,796 KB
testcase_16 AC 218 ms
226,076 KB
testcase_17 AC 212 ms
225,912 KB
testcase_18 AC 213 ms
226,360 KB
testcase_19 AC 218 ms
225,592 KB
testcase_20 AC 215 ms
225,776 KB
testcase_21 AC 216 ms
225,520 KB
testcase_22 AC 219 ms
225,348 KB
testcase_23 AC 214 ms
225,716 KB
testcase_24 AC 221 ms
226,452 KB
testcase_25 AC 229 ms
226,040 KB
testcase_26 AC 222 ms
225,516 KB
testcase_27 AC 211 ms
225,692 KB
testcase_28 AC 222 ms
225,660 KB
testcase_29 AC 216 ms
226,056 KB
testcase_30 AC 218 ms
225,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

##################

n = int(input())
st = set()
for i in range(1, 10**6+1):
  st.add(i**3)
print('Yes' if n in st else 'No')
0