結果

問題 No.1585 Cubic Number
ユーザー 👑 KazunKazun
提出日時 2021-07-08 22:20:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 1,000 ms
コード長 84 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 87,152 KB
実行使用メモリ 83,396 KB
最終ジャッジ日時 2023-09-14 05:54:31
合計ジャッジ時間 3,971 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
83,084 KB
testcase_01 AC 76 ms
82,884 KB
testcase_02 AC 79 ms
83,044 KB
testcase_03 AC 78 ms
82,928 KB
testcase_04 AC 77 ms
82,960 KB
testcase_05 AC 76 ms
82,924 KB
testcase_06 AC 78 ms
83,088 KB
testcase_07 AC 76 ms
82,920 KB
testcase_08 AC 74 ms
82,908 KB
testcase_09 AC 75 ms
83,064 KB
testcase_10 AC 74 ms
83,224 KB
testcase_11 AC 78 ms
83,024 KB
testcase_12 AC 77 ms
83,104 KB
testcase_13 AC 78 ms
83,104 KB
testcase_14 AC 78 ms
82,964 KB
testcase_15 AC 78 ms
83,040 KB
testcase_16 AC 77 ms
82,884 KB
testcase_17 AC 77 ms
83,072 KB
testcase_18 AC 77 ms
82,824 KB
testcase_19 AC 77 ms
82,824 KB
testcase_20 AC 77 ms
82,960 KB
testcase_21 AC 78 ms
83,004 KB
testcase_22 AC 77 ms
83,084 KB
testcase_23 AC 76 ms
83,396 KB
testcase_24 AC 77 ms
83,020 KB
testcase_25 AC 75 ms
82,916 KB
testcase_26 AC 76 ms
83,104 KB
testcase_27 AC 76 ms
82,920 KB
testcase_28 AC 76 ms
83,288 KB
testcase_29 AC 76 ms
83,084 KB
testcase_30 AC 75 ms
82,988 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