結果
問題 | No.1585 Cubic Number |
ユーザー |
![]() |
提出日時 | 2024-05-20 08:51:35 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 288 ms / 1,000 ms |
コード長 | 119 bytes |
コンパイル時間 | 374 ms |
コンパイル使用メモリ | 82,052 KB |
実行使用メモリ | 226,452 KB |
最終ジャッジ日時 | 2024-12-20 17:45:26 |
合計ジャッジ時間 | 10,564 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
N = int(input()) S = set() for i in range(1, 10 ** 6 + 5): S.add(i**3) print("Yes") if N in S else print("No")