結果
| 問題 | No.668 6.0*10^23 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-01-02 13:09:17 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 201 bytes |
| コンパイル時間 | 163 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-07-01 06:19:44 |
| 合計ジャッジ時間 | 3,188 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 WA * 3 RE * 40 |
ソースコード
# -*- coding: utf-8 -*-
from math import log10,floor
n = int(input())
k = floor(log10(n))
x = n//(10**(k-2))
x /= 100
x = round(x,1)
if x>=10.0:
x /= 10
k += 1
print("{}*10^{}".format(x,k))