結果

問題 No.428 小数から逃げる夢
ユーザー convexineq
提出日時 2021-02-04 09:07:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 120 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 80,528 KB
最終ジャッジ日時 2024-06-30 14:26:33
合計ジャッジ時間 13,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
getcontext().prec = 300
d = "0."+"".join(map(str,range(1,100)))+"1"
print(Decimal(d)*int(input()))
0