結果
| 問題 | No.428 小数から逃げる夢 |
| コンテスト | |
| ユーザー |
surprise_tanaka
|
| 提出日時 | 2018-12-04 15:57:22 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 141 bytes |
| 記録 | |
| コンパイル時間 | 476 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,732 KB |
| 最終ジャッジ日時 | 2026-03-29 06:41:10 |
| 合計ジャッジ時間 | 12,665 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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