結果

問題 No.1329 Square Sqsq
ユーザー marusuke
提出日時 2021-01-09 09:37:20
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 76 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-11-17 10:39:29
合計ジャッジ時間 2,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 RE * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())
s=math.sqrt(n)
c=math.floor(s)
print(len(str(c)))
0