結果
問題 | No.1329 Square Sqsq |
ユーザー |
|
提出日時 | 2021-01-08 22:21:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 135 bytes |
コンパイル時間 | 357 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 65,408 KB |
最終ジャッジ日時 | 2024-11-16 13:02:00 |
合計ジャッジ時間 | 2,719 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 3 RE * 21 |
ソースコード
import sys,mathinput = sys.stdin.readlinen = int(input())n=math.sqrt(n)ans=0while(n>0):n/=10ans+=1print(ans)print('\n')