結果

問題 No.1585 Cubic Number
ユーザー shinichishinichi
提出日時 2021-07-08 22:32:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 124 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 59,484 KB
最終ジャッジ日時 2024-07-01 12:50:58
合計ジャッジ時間 2,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,324 KB
testcase_01 AC 38 ms
52,700 KB
testcase_02 AC 44 ms
58,072 KB
testcase_03 AC 43 ms
58,036 KB
testcase_04 AC 44 ms
57,704 KB
testcase_05 AC 43 ms
58,684 KB
testcase_06 AC 43 ms
58,740 KB
testcase_07 AC 44 ms
58,416 KB
testcase_08 AC 39 ms
52,248 KB
testcase_09 AC 39 ms
52,112 KB
testcase_10 AC 38 ms
52,948 KB
testcase_11 AC 39 ms
51,888 KB
testcase_12 AC 42 ms
58,600 KB
testcase_13 AC 42 ms
57,652 KB
testcase_14 AC 42 ms
58,060 KB
testcase_15 AC 42 ms
57,928 KB
testcase_16 AC 43 ms
58,024 KB
testcase_17 AC 43 ms
57,912 KB
testcase_18 AC 43 ms
57,752 KB
testcase_19 AC 42 ms
59,116 KB
testcase_20 AC 44 ms
59,484 KB
testcase_21 AC 42 ms
59,084 KB
testcase_22 AC 44 ms
58,420 KB
testcase_23 AC 43 ms
58,196 KB
testcase_24 AC 44 ms
57,784 KB
testcase_25 AC 43 ms
57,596 KB
testcase_26 AC 42 ms
57,864 KB
testcase_27 AC 42 ms
58,868 KB
testcase_28 AC 37 ms
52,728 KB
testcase_29 AC 42 ms
58,076 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, sys
n = int(input())
for i in range(10**6):
    if i**3==n:
        print('Yes')
        sys.exit()
print('No')
0