結果

問題 No.668 6.0*10^23
ユーザー yuppe19 😺yuppe19 😺
提出日時 2018-03-24 14:56:38
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 154 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-06-30 05:29:36
合計ジャッジ時間 5,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,064 KB
testcase_01 AC 217 ms
8,448 KB
testcase_02 AC 99 ms
8,320 KB
testcase_03 AC 47 ms
8,192 KB
testcase_04 AC 61 ms
8,192 KB
testcase_05 AC 26 ms
8,192 KB
testcase_06 AC 60 ms
8,320 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 18 ms
7,936 KB
testcase_10 AC 38 ms
8,192 KB
testcase_11 AC 213 ms
8,448 KB
testcase_12 AC 34 ms
8,064 KB
testcase_13 AC 199 ms
8,448 KB
testcase_14 AC 127 ms
8,320 KB
testcase_15 AC 22 ms
8,192 KB
testcase_16 AC 26 ms
8,192 KB
testcase_17 AC 186 ms
8,448 KB
testcase_18 AC 67 ms
8,320 KB
testcase_19 AC 26 ms
8,192 KB
testcase_20 AC 78 ms
8,192 KB
testcase_21 AC 74 ms
8,320 KB
testcase_22 AC 183 ms
8,320 KB
testcase_23 AC 98 ms
8,320 KB
testcase_24 AC 25 ms
8,192 KB
testcase_25 AC 200 ms
8,448 KB
testcase_26 AC 18 ms
8,064 KB
testcase_27 AC 101 ms
8,320 KB
testcase_28 AC 200 ms
8,448 KB
testcase_29 AC 49 ms
8,192 KB
testcase_30 AC 211 ms
8,448 KB
testcase_31 AC 79 ms
8,448 KB
testcase_32 AC 21 ms
8,192 KB
testcase_33 AC 145 ms
8,320 KB
testcase_34 AC 37 ms
8,192 KB
testcase_35 AC 33 ms
8,064 KB
testcase_36 AC 114 ms
8,320 KB
testcase_37 AC 214 ms
8,448 KB
testcase_38 AC 70 ms
8,320 KB
testcase_39 AC 97 ms
8,320 KB
testcase_40 AC 191 ms
8,448 KB
testcase_41 AC 141 ms
8,192 KB
testcase_42 AC 57 ms
8,192 KB
testcase_43 AC 168 ms
8,448 KB
testcase_44 AC 220 ms
8,448 KB
testcase_45 AC 17 ms
7,936 KB
testcase_46 AC 17 ms
8,192 KB
testcase_47 AC 17 ms
8,064 KB
testcase_48 AC 18 ms
7,936 KB
testcase_49 AC 17 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
from decimal import *

n = Decimal(raw_input())
res = '{:.1e}'.format(n).replace('e+', '*10^')
print res
0