結果
| 問題 |
No.428 小数から逃げる夢
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-02-04 09:04:06 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 115 ms / 1,000 ms |
| コード長 | 141 bytes |
| コンパイル時間 | 421 ms |
| コンパイル使用メモリ | 82,332 KB |
| 実行使用メモリ | 80,452 KB |
| 最終ジャッジ日時 | 2024-06-30 14:25:52 |
| 合計ジャッジ時間 | 13,769 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 100 |
ソースコード
from decimal import * getcontext().prec = 300 d = "".join(map(str,range(1,100)))+"1" x = Decimal(d)*int(input())/Decimal(10**len(d)) print(x)
convexineq