結果
| 問題 | No.668 6.0*10^23 |
| コンテスト | |
| ユーザー |
ebicochineal
|
| 提出日時 | 2018-03-23 23:00:09 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 157 bytes |
| 記録 | |
| コンパイル時間 | 68 ms |
| コンパイル使用メモリ | 81,280 KB |
| 実行使用メモリ | 82,560 KB |
| 最終ジャッジ日時 | 2026-07-18 17:35:52 |
| 合計ジャッジ時間 | 5,553 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 WA * 1 RE * 41 |
ソースコード
#! /usr/bin/env python2
N = raw_input()
l = len(N)-2
n = int(N)
x = round(n/10.0**l)/10
if x > 9:
x /= 10
l += 1
print(str(x)+'*'+'10'+'^'+str(l+1))
ebicochineal