結果

問題 No.1585 Cubic Number
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-08 22:25:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 87,216 KB
実行使用メモリ 75,972 KB
最終ジャッジ日時 2023-09-14 06:06:27
合計ジャッジ時間 4,119 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
75,692 KB
testcase_01 AC 86 ms
71,252 KB
testcase_02 AC 85 ms
75,732 KB
testcase_03 AC 86 ms
75,704 KB
testcase_04 AC 86 ms
75,716 KB
testcase_05 AC 87 ms
75,612 KB
testcase_06 AC 88 ms
75,608 KB
testcase_07 AC 80 ms
75,652 KB
testcase_08 AC 72 ms
71,236 KB
testcase_09 AC 75 ms
71,064 KB
testcase_10 AC 71 ms
71,368 KB
testcase_11 AC 68 ms
71,188 KB
testcase_12 AC 74 ms
75,748 KB
testcase_13 AC 77 ms
75,744 KB
testcase_14 AC 77 ms
75,688 KB
testcase_15 AC 76 ms
75,752 KB
testcase_16 AC 74 ms
75,824 KB
testcase_17 AC 77 ms
75,760 KB
testcase_18 AC 81 ms
75,920 KB
testcase_19 AC 82 ms
75,824 KB
testcase_20 AC 82 ms
75,804 KB
testcase_21 AC 81 ms
75,808 KB
testcase_22 AC 83 ms
75,712 KB
testcase_23 AC 79 ms
75,720 KB
testcase_24 AC 72 ms
75,648 KB
testcase_25 AC 72 ms
75,524 KB
testcase_26 AC 72 ms
75,532 KB
testcase_27 AC 72 ms
75,604 KB
testcase_28 AC 67 ms
71,256 KB
testcase_29 AC 72 ms
75,972 KB
testcase_30 AC 70 ms
75,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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