結果
| 問題 | No.668 6.0*10^23 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-03-24 14:56:38 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 154 bytes |
| 記録 | |
| コンパイル時間 | 707 ms |
| コンパイル使用メモリ | 77,716 KB |
| 最終ジャッジ日時 | 2025-12-04 01:04:35 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 48 WA * 2 |
ソースコード
#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
from decimal import *
n = Decimal(raw_input())
res = '{:.1e}'.format(n).replace('e+', '*10^')
print res