結果

問題 No.1585 Cubic Number
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-07-08 23:35:46
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 89 bytes
コンパイル時間 279 ms
使用メモリ 80,384 KB
最終ジャッジ日時 2023-02-01 20:07:46
合計ジャッジ時間 4,627 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 94 ms
80,008 KB
testcase_01 AC 87 ms
75,452 KB
testcase_02 AC 89 ms
75,448 KB
testcase_03 AC 88 ms
75,544 KB
testcase_04 AC 86 ms
75,716 KB
testcase_05 AC 86 ms
75,708 KB
testcase_06 AC 86 ms
75,692 KB
testcase_07 AC 85 ms
75,720 KB
testcase_08 AC 85 ms
75,492 KB
testcase_09 AC 86 ms
75,560 KB
testcase_10 AC 87 ms
75,552 KB
testcase_11 AC 86 ms
75,784 KB
testcase_12 AC 91 ms
80,356 KB
testcase_13 AC 91 ms
80,012 KB
testcase_14 AC 91 ms
80,248 KB
testcase_15 AC 86 ms
75,660 KB
testcase_16 AC 89 ms
75,596 KB
testcase_17 AC 87 ms
75,760 KB
testcase_18 AC 91 ms
80,224 KB
testcase_19 AC 91 ms
80,356 KB
testcase_20 AC 90 ms
80,216 KB
testcase_21 AC 90 ms
80,192 KB
testcase_22 AC 91 ms
80,364 KB
testcase_23 AC 92 ms
80,220 KB
testcase_24 AC 91 ms
80,232 KB
testcase_25 AC 93 ms
80,220 KB
testcase_26 AC 91 ms
80,292 KB
testcase_27 AC 91 ms
80,220 KB
testcase_28 AC 87 ms
75,740 KB
testcase_29 AC 86 ms
75,592 KB
testcase_30 AC 92 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
i=1
ans="No"
while i**3<=n:
    if i**3==n:ans="Yes"
    i+=1

print(ans)
0