結果

問題 No.1585 Cubic Number
ユーザー wesoweeenwesoweeen
提出日時 2021-07-20 21:39:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 92,912 KB
最終ジャッジ日時 2024-07-17 13:49:25
合計ジャッジ時間 19,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 512 ms
43,896 KB
testcase_02 AC 519 ms
44,268 KB
testcase_03 AC 511 ms
44,152 KB
testcase_04 AC 510 ms
44,156 KB
testcase_05 AC 519 ms
44,196 KB
testcase_06 AC 521 ms
44,160 KB
testcase_07 AC 512 ms
43,772 KB
testcase_08 AC 514 ms
43,780 KB
testcase_09 AC 509 ms
44,160 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 514 ms
43,900 KB
testcase_15 AC 508 ms
44,156 KB
testcase_16 AC 504 ms
43,980 KB
testcase_17 AC 519 ms
44,412 KB
testcase_18 AC 518 ms
44,280 KB
testcase_19 AC 515 ms
43,900 KB
testcase_20 AC 511 ms
43,888 KB
testcase_21 AC 510 ms
44,156 KB
testcase_22 AC 509 ms
44,540 KB
testcase_23 AC 508 ms
44,140 KB
testcase_24 AC 513 ms
43,904 KB
testcase_25 AC 525 ms
44,416 KB
testcase_26 AC 518 ms
43,912 KB
testcase_27 AC 510 ms
44,284 KB
testcase_28 AC 514 ms
43,776 KB
testcase_29 AC 513 ms
43,900 KB
testcase_30 AC 516 ms
92,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy 
def main():
    N = int(input())
    print('Yes') if numpy.cbrt(N).is_integer() else print('No')


if __name__ == '__main__':
    main()
0