結果
| 問題 | No.1585 Cubic Number |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-07-15 10:24:38 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 274 ms / 1,000 ms |
| コード長 | 101 bytes |
| 記録 | |
| コンパイル時間 | 496 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-03-25 18:22:50 |
| 合計ジャッジ時間 | 9,192 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
#yuki1585
n=int(input())
for i in range(1,10**6+1):
if i**3==n:
print('Yes')
exit()
print('No')