結果
| 問題 | No.1329 Square Sqsq |
| コンテスト | |
| ユーザー |
heno239
|
| 提出日時 | 2021-01-08 22:15:15 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 173 bytes |
| 記録 | |
| コンパイル時間 | 179 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 80,000 KB |
| 最終ジャッジ日時 | 2026-05-11 18:53:58 |
| 合計ジャッジ時間 | 2,645 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 RE * 19 |
ソースコード
n=int(input())
le=0
ri=50005
while ri-le>1:
m=(le+ri)//2
sup=1
for i in range(m):sup=sup*10
sup-=1
sup=sup*sup
if sup<n:le=m
else: ri=m
print(ri)
heno239