結果
問題 | No.1585 Cubic Number |
ユーザー |
![]() |
提出日時 | 2021-07-10 01:29:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 111 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 82,472 KB |
実行使用メモリ | 59,404 KB |
最終ジャッジ日時 | 2024-07-01 20:24:20 |
合計ジャッジ時間 | 2,462 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 8 WA * 20 |
ソースコード
N = int(input()) for i in range(1,10**6 + 1): if i**3 == N: print("Yes") exit() print("NO")