結果
| 問題 | No.1585 Cubic Number |
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2021-07-08 22:20:37 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 68 ms / 1,000 ms |
| + 190µs | |
| コード長 | 84 bytes |
| 記録 | |
| コンパイル時間 | 222 ms |
| コンパイル使用メモリ | 96,492 KB |
| 実行使用メモリ | 90,880 KB |
| 最終ジャッジ日時 | 2026-08-03 08:04:53 |
| 合計ジャッジ時間 | 3,905 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
N=int(input())
X=[x*x*x for x in range(10**6+1)]
print("Yes" if N in X else "No")
Kazun