結果

問題 No.668 6.0*10^23
ユーザー eQeeQe
提出日時 2020-05-08 02:28:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 87,140 KB
実行使用メモリ 72,768 KB
最終ジャッジ日時 2023-09-16 08:16:57
合計ジャッジ時間 7,578 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
72,676 KB
testcase_01 AC 108 ms
72,616 KB
testcase_02 AC 110 ms
72,444 KB
testcase_03 AC 111 ms
72,672 KB
testcase_04 AC 106 ms
72,412 KB
testcase_05 AC 107 ms
72,664 KB
testcase_06 AC 105 ms
72,344 KB
testcase_07 AC 108 ms
72,716 KB
testcase_08 AC 109 ms
72,220 KB
testcase_09 AC 107 ms
72,428 KB
testcase_10 AC 107 ms
72,616 KB
testcase_11 AC 107 ms
72,572 KB
testcase_12 AC 108 ms
72,724 KB
testcase_13 AC 108 ms
72,704 KB
testcase_14 AC 108 ms
72,764 KB
testcase_15 AC 109 ms
72,592 KB
testcase_16 AC 108 ms
72,764 KB
testcase_17 AC 108 ms
72,668 KB
testcase_18 AC 109 ms
72,588 KB
testcase_19 AC 105 ms
72,512 KB
testcase_20 AC 108 ms
72,616 KB
testcase_21 AC 109 ms
72,516 KB
testcase_22 AC 108 ms
72,696 KB
testcase_23 AC 109 ms
72,496 KB
testcase_24 AC 111 ms
72,456 KB
testcase_25 AC 113 ms
72,456 KB
testcase_26 AC 108 ms
72,712 KB
testcase_27 AC 108 ms
72,464 KB
testcase_28 AC 110 ms
72,668 KB
testcase_29 AC 109 ms
72,472 KB
testcase_30 AC 108 ms
72,496 KB
testcase_31 AC 111 ms
72,336 KB
testcase_32 AC 110 ms
72,460 KB
testcase_33 AC 112 ms
72,544 KB
testcase_34 AC 113 ms
72,412 KB
testcase_35 AC 112 ms
72,652 KB
testcase_36 AC 110 ms
72,484 KB
testcase_37 AC 116 ms
72,532 KB
testcase_38 AC 110 ms
72,696 KB
testcase_39 AC 112 ms
72,616 KB
testcase_40 AC 111 ms
72,148 KB
testcase_41 AC 108 ms
72,344 KB
testcase_42 AC 109 ms
72,564 KB
testcase_43 AC 113 ms
72,616 KB
testcase_44 AC 111 ms
72,336 KB
testcase_45 AC 110 ms
72,700 KB
testcase_46 AC 108 ms
72,768 KB
testcase_47 AC 110 ms
72,652 KB
testcase_48 AC 114 ms
72,580 KB
testcase_49 AC 109 ms
72,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from math import sqrt
import sys
from collections import deque, defaultdict
from heapq import heappop, heappush
from copy import deepcopy

INF=10**18
MOD=10**9+7
MAX=10**5+7

def main():
  s=input()

  n=int(s[:2])
  if int(s[2])>=5: n+=1

  if n==100:
    print("1.0*10^{}".format(len(s)))
  else:
    print("{}.{}*10^{}".format(n//10, n%10, len(s)-1))

  
if __name__ == '__main__':
    main()



0