結果

問題 No.1585 Cubic Number
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-08 22:25:11
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 372 ms
使用メモリ 80,608 KB
最終ジャッジ日時 2023-02-01 20:00:44
合計ジャッジ時間 4,627 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 93 ms
80,344 KB
testcase_01 AC 86 ms
75,780 KB
testcase_02 AC 93 ms
80,304 KB
testcase_03 AC 94 ms
80,348 KB
testcase_04 AC 94 ms
80,348 KB
testcase_05 AC 93 ms
80,116 KB
testcase_06 AC 92 ms
80,304 KB
testcase_07 AC 93 ms
80,112 KB
testcase_08 AC 86 ms
75,708 KB
testcase_09 AC 86 ms
75,444 KB
testcase_10 AC 86 ms
75,500 KB
testcase_11 AC 86 ms
75,660 KB
testcase_12 AC 91 ms
80,476 KB
testcase_13 AC 90 ms
80,112 KB
testcase_14 AC 92 ms
80,440 KB
testcase_15 AC 93 ms
80,112 KB
testcase_16 AC 91 ms
80,468 KB
testcase_17 AC 92 ms
80,480 KB
testcase_18 AC 91 ms
80,344 KB
testcase_19 AC 90 ms
80,340 KB
testcase_20 AC 91 ms
80,352 KB
testcase_21 AC 92 ms
80,492 KB
testcase_22 AC 93 ms
80,492 KB
testcase_23 AC 92 ms
80,116 KB
testcase_24 AC 92 ms
80,512 KB
testcase_25 AC 92 ms
80,476 KB
testcase_26 AC 92 ms
80,540 KB
testcase_27 AC 93 ms
80,348 KB
testcase_28 AC 85 ms
75,440 KB
testcase_29 AC 93 ms
80,312 KB
testcase_30 AC 90 ms
80,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(1,2*10**6):
    if n == i**3:
        print("Yes")
        exit()
print("No")
0