結果

問題 No.668 6.0*10^23
ユーザー yuppe19 😺yuppe19 😺
提出日時 2018-03-24 14:56:38
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 154 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 6,616 KB
実行使用メモリ 8,172 KB
最終ジャッジ日時 2023-09-12 17:41:42
合計ジャッジ時間 7,674 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
7,604 KB
testcase_01 AC 256 ms
8,016 KB
testcase_02 AC 112 ms
7,936 KB
testcase_03 AC 55 ms
7,804 KB
testcase_04 AC 72 ms
7,824 KB
testcase_05 AC 30 ms
7,924 KB
testcase_06 AC 73 ms
7,848 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 20 ms
7,608 KB
testcase_10 AC 45 ms
7,884 KB
testcase_11 AC 254 ms
8,172 KB
testcase_12 AC 40 ms
7,764 KB
testcase_13 AC 232 ms
7,840 KB
testcase_14 AC 151 ms
7,828 KB
testcase_15 AC 24 ms
7,840 KB
testcase_16 AC 33 ms
7,828 KB
testcase_17 AC 206 ms
7,944 KB
testcase_18 AC 79 ms
7,948 KB
testcase_19 AC 29 ms
7,864 KB
testcase_20 AC 93 ms
7,928 KB
testcase_21 AC 87 ms
7,940 KB
testcase_22 AC 219 ms
7,880 KB
testcase_23 AC 116 ms
7,996 KB
testcase_24 AC 27 ms
7,860 KB
testcase_25 AC 228 ms
7,956 KB
testcase_26 AC 21 ms
7,708 KB
testcase_27 AC 121 ms
7,856 KB
testcase_28 AC 231 ms
7,956 KB
testcase_29 AC 55 ms
7,908 KB
testcase_30 AC 249 ms
7,956 KB
testcase_31 AC 94 ms
7,940 KB
testcase_32 AC 24 ms
7,704 KB
testcase_33 AC 166 ms
7,856 KB
testcase_34 AC 43 ms
7,892 KB
testcase_35 AC 39 ms
7,860 KB
testcase_36 AC 134 ms
7,932 KB
testcase_37 AC 246 ms
7,860 KB
testcase_38 AC 82 ms
7,948 KB
testcase_39 AC 115 ms
7,860 KB
testcase_40 AC 227 ms
7,940 KB
testcase_41 AC 167 ms
7,828 KB
testcase_42 AC 66 ms
8,012 KB
testcase_43 AC 200 ms
7,968 KB
testcase_44 AC 257 ms
7,840 KB
testcase_45 AC 20 ms
7,584 KB
testcase_46 AC 20 ms
7,836 KB
testcase_47 AC 20 ms
7,580 KB
testcase_48 AC 20 ms
7,600 KB
testcase_49 AC 20 ms
7,656 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