結果

問題 No.668 6.0*10^23
ユーザー otsunekootsuneko
提出日時 2021-05-06 10:46:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 80,300 KB
最終ジャッジ日時 2024-09-14 03:36:23
合計ジャッジ時間 7,868 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
80,224 KB
testcase_01 AC 121 ms
80,000 KB
testcase_02 AC 127 ms
80,128 KB
testcase_03 AC 121 ms
80,196 KB
testcase_04 AC 121 ms
80,000 KB
testcase_05 AC 121 ms
80,168 KB
testcase_06 AC 118 ms
80,000 KB
testcase_07 AC 122 ms
80,000 KB
testcase_08 AC 118 ms
80,128 KB
testcase_09 AC 121 ms
80,256 KB
testcase_10 AC 123 ms
80,280 KB
testcase_11 AC 120 ms
79,884 KB
testcase_12 AC 118 ms
80,300 KB
testcase_13 AC 121 ms
80,084 KB
testcase_14 AC 119 ms
80,128 KB
testcase_15 AC 121 ms
79,960 KB
testcase_16 AC 122 ms
79,904 KB
testcase_17 AC 120 ms
80,256 KB
testcase_18 AC 119 ms
80,000 KB
testcase_19 AC 120 ms
80,128 KB
testcase_20 AC 118 ms
79,908 KB
testcase_21 AC 118 ms
79,744 KB
testcase_22 AC 119 ms
80,000 KB
testcase_23 AC 119 ms
80,124 KB
testcase_24 AC 120 ms
80,164 KB
testcase_25 AC 124 ms
80,128 KB
testcase_26 AC 119 ms
80,128 KB
testcase_27 AC 118 ms
80,200 KB
testcase_28 AC 118 ms
80,000 KB
testcase_29 AC 117 ms
80,168 KB
testcase_30 AC 119 ms
80,128 KB
testcase_31 AC 118 ms
80,164 KB
testcase_32 AC 120 ms
80,180 KB
testcase_33 AC 120 ms
79,744 KB
testcase_34 AC 119 ms
80,000 KB
testcase_35 AC 122 ms
80,256 KB
testcase_36 AC 122 ms
79,872 KB
testcase_37 AC 123 ms
80,220 KB
testcase_38 AC 120 ms
80,128 KB
testcase_39 AC 119 ms
80,036 KB
testcase_40 AC 120 ms
80,000 KB
testcase_41 AC 119 ms
80,000 KB
testcase_42 AC 120 ms
80,256 KB
testcase_43 AC 123 ms
79,744 KB
testcase_44 AC 119 ms
80,000 KB
testcase_45 AC 120 ms
79,964 KB
testcase_46 AC 121 ms
80,256 KB
testcase_47 AC 120 ms
80,184 KB
testcase_48 AC 120 ms
80,016 KB
testcase_49 AC 118 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal, ROUND_HALF_UP
N = input()
l = len(N)-1
N2 = int(N[:3])/10**2
N3 = Decimal(str(N2)).quantize(Decimal('0.1'), rounding=ROUND_HALF_UP)

if len(str(int(N3))) == 2:
    print(str(N3/10)+"*10^"+str(l+1))
else:
    print(str(N3)+"*10^"+str(l))
0