結果
| 問題 |
No.2185 平方数の下6桁
|
| コンテスト | |
| ユーザー |
coder_So_hey
|
| 提出日時 | 2023-01-13 21:53:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 185 bytes |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 25,984 KB |
| 最終ジャッジ日時 | 2024-12-24 17:16:28 |
| 合計ジャッジ時間 | 48,369 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 WA * 10 TLE * 10 |
ソースコード
S = input()
bool = False
for i in range(1000000000):
t = str(i ** 2).zfill(6)
if S == t[:6]:
bool = True
break
if bool:
print("YES")
else:
print("NO")
coder_So_hey