結果

問題 No.1585 Cubic Number
ユーザー shinichishinichi
提出日時 2021-07-08 22:32:54
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 80 ms / 1,000 ms
コード長 126 bytes
コンパイル時間 244 ms
使用メモリ 80,712 KB
最終ジャッジ日時 2023-02-01 20:03:05
合計ジャッジ時間 4,107 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 77 ms
80,468 KB
testcase_01 AC 71 ms
75,656 KB
testcase_02 AC 78 ms
80,412 KB
testcase_03 AC 80 ms
80,440 KB
testcase_04 AC 79 ms
80,428 KB
testcase_05 AC 80 ms
80,404 KB
testcase_06 AC 78 ms
80,408 KB
testcase_07 AC 78 ms
80,472 KB
testcase_08 AC 72 ms
75,860 KB
testcase_09 AC 73 ms
75,524 KB
testcase_10 AC 73 ms
75,880 KB
testcase_11 AC 72 ms
75,676 KB
testcase_12 AC 76 ms
80,432 KB
testcase_13 AC 76 ms
80,428 KB
testcase_14 AC 77 ms
80,388 KB
testcase_15 AC 78 ms
80,712 KB
testcase_16 AC 80 ms
80,392 KB
testcase_17 AC 77 ms
80,136 KB
testcase_18 AC 78 ms
80,464 KB
testcase_19 AC 76 ms
80,404 KB
testcase_20 AC 79 ms
80,604 KB
testcase_21 AC 80 ms
80,364 KB
testcase_22 AC 78 ms
80,136 KB
testcase_23 AC 77 ms
80,348 KB
testcase_24 AC 77 ms
80,408 KB
testcase_25 AC 79 ms
80,368 KB
testcase_26 AC 79 ms
80,380 KB
testcase_27 AC 79 ms
80,380 KB
testcase_28 AC 74 ms
75,752 KB
testcase_29 AC 77 ms
80,352 KB
testcase_30 AC 77 ms
80,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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