結果
| 問題 |
No.1329 Square Sqsq
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-08 22:32:20 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 143 bytes |
| コンパイル時間 | 172 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-11-16 13:25:56 |
| 合計ジャッジ時間 | 1,619 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 RE * 19 |
ソースコード
N = int(input())
ans = 1
l = 1
r = 100
while True:
if l <= N < r:
print(ans)
exit()
l*=100
r *= 100
ans += 1