結果

問題 No.1585 Cubic Number
ユーザー m1k__m1k__
提出日時 2021-07-08 22:24:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 117 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 87,308 KB
実行使用メモリ 75,932 KB
最終ジャッジ日時 2023-09-14 06:05:29
合計ジャッジ時間 3,837 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,752 KB
testcase_01 AC 74 ms
71,056 KB
testcase_02 AC 71 ms
71,468 KB
testcase_03 AC 71 ms
71,324 KB
testcase_04 AC 70 ms
71,128 KB
testcase_05 AC 69 ms
71,292 KB
testcase_06 AC 70 ms
71,128 KB
testcase_07 AC 71 ms
71,216 KB
testcase_08 AC 70 ms
71,264 KB
testcase_09 AC 69 ms
71,208 KB
testcase_10 AC 69 ms
71,376 KB
testcase_11 AC 70 ms
71,432 KB
testcase_12 AC 73 ms
75,716 KB
testcase_13 AC 75 ms
75,748 KB
testcase_14 AC 73 ms
75,816 KB
testcase_15 AC 72 ms
75,676 KB
testcase_16 AC 74 ms
75,672 KB
testcase_17 AC 73 ms
75,912 KB
testcase_18 AC 76 ms
75,720 KB
testcase_19 AC 76 ms
75,688 KB
testcase_20 AC 74 ms
75,932 KB
testcase_21 AC 75 ms
75,816 KB
testcase_22 AC 74 ms
75,824 KB
testcase_23 AC 74 ms
75,728 KB
testcase_24 AC 73 ms
75,616 KB
testcase_25 AC 75 ms
75,684 KB
testcase_26 AC 74 ms
75,684 KB
testcase_27 AC 74 ms
75,672 KB
testcase_28 AC 69 ms
71,432 KB
testcase_29 AC 70 ms
71,128 KB
testcase_30 AC 74 ms
75,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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