結果
問題 |
No.1329 Square Sqsq
|
ユーザー |
![]() |
提出日時 | 2021-01-08 22:11:34 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 124 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 65,280 KB |
最終ジャッジ日時 | 2024-11-16 12:36:14 |
合計ジャッジ時間 | 2,764 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 RE * 19 |
ソースコード
n=int(input()) x=1 cur=9 while True: sup=cur*cur if sup<n: x+=1 cur=10*cur+9 else:break print(x)