結果
| 問題 |
No.2185 平方数の下6桁
|
| コンテスト | |
| ユーザー |
coder_So_hey
|
| 提出日時 | 2023-01-13 21:53:05 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 185 bytes |
| コンパイル時間 | 192 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 26,112 KB |
| 最終ジャッジ日時 | 2024-12-24 17:13:16 |
| 合計ジャッジ時間 | 47,923 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 27 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