結果

問題 No.1585 Cubic Number
ユーザー horitaka1999horitaka1999
提出日時 2021-07-08 22:25:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 59,600 KB
最終ジャッジ日時 2024-07-01 12:45:23
合計ジャッジ時間 2,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,588 KB
testcase_01 AC 44 ms
57,936 KB
testcase_02 AC 44 ms
57,856 KB
testcase_03 AC 44 ms
58,196 KB
testcase_04 AC 45 ms
57,932 KB
testcase_05 AC 43 ms
58,028 KB
testcase_06 AC 45 ms
58,560 KB
testcase_07 AC 44 ms
59,056 KB
testcase_08 AC 45 ms
58,424 KB
testcase_09 AC 43 ms
58,700 KB
testcase_10 AC 43 ms
57,508 KB
testcase_11 AC 43 ms
58,624 KB
testcase_12 AC 44 ms
58,436 KB
testcase_13 AC 44 ms
58,472 KB
testcase_14 AC 44 ms
58,140 KB
testcase_15 AC 42 ms
57,948 KB
testcase_16 AC 43 ms
57,864 KB
testcase_17 AC 42 ms
58,536 KB
testcase_18 AC 43 ms
58,600 KB
testcase_19 AC 42 ms
58,636 KB
testcase_20 AC 43 ms
59,600 KB
testcase_21 AC 42 ms
58,332 KB
testcase_22 AC 44 ms
57,996 KB
testcase_23 AC 42 ms
59,352 KB
testcase_24 AC 43 ms
58,012 KB
testcase_25 AC 42 ms
58,352 KB
testcase_26 AC 42 ms
58,868 KB
testcase_27 AC 44 ms
57,836 KB
testcase_28 AC 42 ms
58,124 KB
testcase_29 AC 43 ms
58,468 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
p = 0
flag = False
for n in range(1,10 ** 6):
    if N == n ** 3:
        flag = True
if flag:
    print('Yes')
else:
    print('No')
0