結果
| 問題 | 
                            No.428 小数から逃げる夢
                             | 
                    
| コンテスト | |
| ユーザー | 
                             surprise_tanaka
                         | 
                    
| 提出日時 | 2018-12-04 15:57:22 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 141 bytes | 
| コンパイル時間 | 107 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 11,264 KB | 
| 最終ジャッジ日時 | 2024-07-07 15:19:18 | 
| 合計ジャッジ時間 | 6,246 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 100 | 
ソースコード
from decimal import Decimal
N = int(input())
cnt = 0
D_str = "0."
for i in range(1,100):
    D_str += str(i)
D = Decimal(D_str)
print(D * N)
            
            
            
        
            
surprise_tanaka