結果

問題 No.1585 Cubic Number
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-08 23:04:16
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 96 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 87,068 KB
実行使用メモリ 75,988 KB
最終ジャッジ日時 2023-09-14 06:10:36
合計ジャッジ時間 4,024 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
75,604 KB
testcase_01 AC 76 ms
71,492 KB
testcase_02 AC 81 ms
75,808 KB
testcase_03 AC 82 ms
75,696 KB
testcase_04 AC 80 ms
75,888 KB
testcase_05 AC 78 ms
75,740 KB
testcase_06 AC 82 ms
75,864 KB
testcase_07 AC 80 ms
75,836 KB
testcase_08 AC 74 ms
71,296 KB
testcase_09 AC 74 ms
71,272 KB
testcase_10 AC 74 ms
71,372 KB
testcase_11 AC 74 ms
71,348 KB
testcase_12 AC 77 ms
75,668 KB
testcase_13 AC 77 ms
75,980 KB
testcase_14 AC 77 ms
75,648 KB
testcase_15 AC 77 ms
75,704 KB
testcase_16 AC 78 ms
75,736 KB
testcase_17 AC 77 ms
75,988 KB
testcase_18 AC 78 ms
75,700 KB
testcase_19 AC 80 ms
75,808 KB
testcase_20 AC 79 ms
75,604 KB
testcase_21 AC 78 ms
75,788 KB
testcase_22 AC 77 ms
75,716 KB
testcase_23 AC 80 ms
75,808 KB
testcase_24 AC 79 ms
75,856 KB
testcase_25 AC 79 ms
75,696 KB
testcase_26 AC 79 ms
75,864 KB
testcase_27 AC 80 ms
75,724 KB
testcase_28 AC 74 ms
71,236 KB
testcase_29 AC 78 ms
75,768 KB
testcase_30 AC 80 ms
75,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(10 ** 6 + 1):
    if i ** 3 == n: exit(print("Yes"))
print("No")
0