結果

問題 No.1585 Cubic Number
ユーザー KeroruKeroru
提出日時 2021-07-08 22:53:24
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 80 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 87,040 KB
実行使用メモリ 75,924 KB
最終ジャッジ日時 2023-09-14 06:08:57
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
75,756 KB
testcase_01 AC 78 ms
75,564 KB
testcase_02 AC 78 ms
75,924 KB
testcase_03 AC 79 ms
75,840 KB
testcase_04 AC 82 ms
75,792 KB
testcase_05 AC 79 ms
75,916 KB
testcase_06 AC 79 ms
75,568 KB
testcase_07 AC 79 ms
75,908 KB
testcase_08 AC 80 ms
75,640 KB
testcase_09 AC 80 ms
75,772 KB
testcase_10 AC 77 ms
75,708 KB
testcase_11 AC 79 ms
75,560 KB
testcase_12 AC 81 ms
75,728 KB
testcase_13 AC 80 ms
75,716 KB
testcase_14 AC 79 ms
75,724 KB
testcase_15 AC 79 ms
75,696 KB
testcase_16 AC 80 ms
75,900 KB
testcase_17 AC 82 ms
75,768 KB
testcase_18 AC 79 ms
75,796 KB
testcase_19 AC 80 ms
75,740 KB
testcase_20 AC 79 ms
75,856 KB
testcase_21 AC 80 ms
75,672 KB
testcase_22 AC 80 ms
75,784 KB
testcase_23 AC 81 ms
75,840 KB
testcase_24 AC 80 ms
75,744 KB
testcase_25 AC 81 ms
75,912 KB
testcase_26 AC 80 ms
75,560 KB
testcase_27 AC 82 ms
75,716 KB
testcase_28 AC 80 ms
75,560 KB
testcase_29 AC 80 ms
75,840 KB
testcase_30 AC 81 ms
75,904 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