結果
| 問題 | No.1585 Cubic Number |
| コンテスト | |
| ユーザー |
kisaragi_kefu
|
| 提出日時 | 2021-07-09 00:09:15 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 109 bytes |
| 記録 | |
| コンパイル時間 | 550 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 20,828 KB |
| 最終ジャッジ日時 | 2026-03-22 15:02:00 |
| 合計ジャッジ時間 | 9,403 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 28 |
ソースコード
from math import sqrt
n = int(input())
if str(sqrt(n)).endsWith(".0"):
print("Yes")
else:
print("No")
kisaragi_kefu