結果

問題 No.1585 Cubic Number
ユーザー tamatotamato
提出日時 2021-07-08 22:22:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 267 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 59,244 KB
最終ジャッジ日時 2024-07-01 13:37:45
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,748 KB
testcase_01 AC 42 ms
52,424 KB
testcase_02 AC 46 ms
59,196 KB
testcase_03 AC 45 ms
59,244 KB
testcase_04 AC 48 ms
57,716 KB
testcase_05 AC 44 ms
57,912 KB
testcase_06 AC 44 ms
58,200 KB
testcase_07 AC 43 ms
57,452 KB
testcase_08 AC 38 ms
52,252 KB
testcase_09 AC 37 ms
53,532 KB
testcase_10 AC 38 ms
52,740 KB
testcase_11 AC 38 ms
53,200 KB
testcase_12 AC 43 ms
59,224 KB
testcase_13 AC 42 ms
57,652 KB
testcase_14 AC 43 ms
57,656 KB
testcase_15 AC 44 ms
58,136 KB
testcase_16 AC 44 ms
57,784 KB
testcase_17 AC 43 ms
57,404 KB
testcase_18 AC 44 ms
58,364 KB
testcase_19 AC 44 ms
59,040 KB
testcase_20 AC 44 ms
57,260 KB
testcase_21 AC 45 ms
57,652 KB
testcase_22 AC 45 ms
58,132 KB
testcase_23 AC 44 ms
57,536 KB
testcase_24 AC 44 ms
58,236 KB
testcase_25 AC 45 ms
58,720 KB
testcase_26 AC 45 ms
57,608 KB
testcase_27 AC 45 ms
58,080 KB
testcase_28 AC 40 ms
52,820 KB
testcase_29 AC 44 ms
58,020 KB
testcase_30 AC 44 ms
57,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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


if __name__ == '__main__':
    main()
0