結果

問題 No.1585 Cubic Number
ユーザー m1k__m1k__
提出日時 2021-07-08 22:22:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 115 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 86,908 KB
実行使用メモリ 75,824 KB
最終ジャッジ日時 2023-09-14 04:59:07
合計ジャッジ時間 3,321 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
75,824 KB
testcase_01 WA -
testcase_02 AC 60 ms
71,252 KB
testcase_03 AC 59 ms
71,228 KB
testcase_04 AC 61 ms
71,272 KB
testcase_05 AC 69 ms
71,192 KB
testcase_06 AC 66 ms
71,068 KB
testcase_07 AC 60 ms
71,272 KB
testcase_08 AC 61 ms
71,112 KB
testcase_09 AC 59 ms
71,396 KB
testcase_10 AC 67 ms
71,116 KB
testcase_11 AC 61 ms
71,364 KB
testcase_12 AC 63 ms
75,644 KB
testcase_13 AC 63 ms
75,656 KB
testcase_14 AC 63 ms
75,816 KB
testcase_15 AC 65 ms
75,788 KB
testcase_16 AC 69 ms
75,728 KB
testcase_17 AC 62 ms
75,492 KB
testcase_18 AC 66 ms
75,492 KB
testcase_19 AC 63 ms
75,492 KB
testcase_20 AC 64 ms
75,736 KB
testcase_21 AC 65 ms
75,568 KB
testcase_22 AC 63 ms
75,788 KB
testcase_23 AC 63 ms
75,692 KB
testcase_24 AC 64 ms
75,732 KB
testcase_25 AC 63 ms
75,644 KB
testcase_26 AC 62 ms
75,628 KB
testcase_27 AC 65 ms
75,692 KB
testcase_28 AC 63 ms
71,140 KB
testcase_29 AC 61 ms
70,904 KB
testcase_30 AC 63 ms
75,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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