結果
問題 | No.1329 Square Sqsq |
ユーザー |
![]() |
提出日時 | 2021-01-08 22:12:47 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 103 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 65,408 KB |
最終ジャッジ日時 | 2024-11-16 12:39:55 |
合計ジャッジ時間 | 2,651 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 RE * 19 |
ソースコード
import mathn=int(input())k=int(1)while n>k*k:k*=2cnt=0while k>0:k//=10cnt+=1print(cnt)