結果

問題 No.1585 Cubic Number
ユーザー KeroruKeroru
提出日時 2021-07-08 22:53:24
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 92 ms / 1,000 ms
コード長 80 bytes
コンパイル時間 271 ms
使用メモリ 80,668 KB
最終ジャッジ日時 2023-02-01 20:04:28
合計ジャッジ時間 4,637 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 91 ms
80,304 KB
testcase_01 AC 91 ms
80,120 KB
testcase_02 AC 92 ms
80,444 KB
testcase_03 AC 90 ms
80,332 KB
testcase_04 AC 90 ms
80,296 KB
testcase_05 AC 91 ms
80,668 KB
testcase_06 AC 91 ms
80,252 KB
testcase_07 AC 91 ms
80,064 KB
testcase_08 AC 90 ms
80,252 KB
testcase_09 AC 90 ms
80,120 KB
testcase_10 AC 91 ms
80,264 KB
testcase_11 AC 92 ms
80,444 KB
testcase_12 AC 92 ms
80,480 KB
testcase_13 AC 92 ms
80,516 KB
testcase_14 AC 92 ms
80,436 KB
testcase_15 AC 92 ms
80,428 KB
testcase_16 AC 90 ms
80,256 KB
testcase_17 AC 92 ms
80,596 KB
testcase_18 AC 91 ms
80,452 KB
testcase_19 AC 90 ms
80,292 KB
testcase_20 AC 91 ms
80,264 KB
testcase_21 AC 92 ms
80,308 KB
testcase_22 AC 91 ms
80,116 KB
testcase_23 AC 91 ms
80,308 KB
testcase_24 AC 91 ms
80,068 KB
testcase_25 AC 91 ms
80,284 KB
testcase_26 AC 91 ms
80,484 KB
testcase_27 AC 91 ms
80,428 KB
testcase_28 AC 90 ms
80,304 KB
testcase_29 AC 90 ms
80,568 KB
testcase_30 AC 90 ms
80,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
k=1
for i in range(10**6+1):
 if i**3==n:k=0
print('YNeos'[k::2])
0