結果
| 問題 | No.8006 A winter wonderland |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2026-03-25 04:44:49 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 217 bytes |
| 記録 | |
| コンパイル時間 | 374 ms |
| コンパイル使用メモリ | 85,760 KB |
| 実行使用メモリ | 103,168 KB |
| 最終ジャッジ日時 | 2026-03-25 04:45:18 |
| 合計ジャッジ時間 | 26,318 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 30 |
ソースコード
import sys
input = sys.stdin.readline
x=int(input())
from decimal import Decimal, getcontext
getcontext().prec = 100000
num = Decimal('2')
sqrt_num = num.sqrt()
S=str(sqrt_num)
ANS=S.index(str(x))
print(ANS-1)
titia