結果

問題 No.668 6.0*10^23
ユーザー eQeeQe
提出日時 2020-05-08 02:28:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 63,064 KB
最終ジャッジ日時 2024-07-03 09:44:22
合計ジャッジ時間 4,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,740 KB
testcase_01 AC 51 ms
61,360 KB
testcase_02 AC 49 ms
61,600 KB
testcase_03 AC 49 ms
61,380 KB
testcase_04 AC 48 ms
60,732 KB
testcase_05 AC 48 ms
61,292 KB
testcase_06 AC 48 ms
61,608 KB
testcase_07 AC 49 ms
61,864 KB
testcase_08 AC 48 ms
61,084 KB
testcase_09 AC 47 ms
61,644 KB
testcase_10 AC 48 ms
61,816 KB
testcase_11 AC 49 ms
61,704 KB
testcase_12 AC 48 ms
60,944 KB
testcase_13 AC 48 ms
62,068 KB
testcase_14 AC 49 ms
61,392 KB
testcase_15 AC 47 ms
60,928 KB
testcase_16 AC 49 ms
61,512 KB
testcase_17 AC 49 ms
61,448 KB
testcase_18 AC 49 ms
61,172 KB
testcase_19 AC 48 ms
61,200 KB
testcase_20 AC 49 ms
61,572 KB
testcase_21 AC 49 ms
62,164 KB
testcase_22 AC 48 ms
61,176 KB
testcase_23 AC 49 ms
61,372 KB
testcase_24 AC 49 ms
61,672 KB
testcase_25 AC 48 ms
62,336 KB
testcase_26 AC 50 ms
61,204 KB
testcase_27 AC 48 ms
61,688 KB
testcase_28 AC 49 ms
61,212 KB
testcase_29 AC 49 ms
62,080 KB
testcase_30 AC 48 ms
61,240 KB
testcase_31 AC 48 ms
61,568 KB
testcase_32 AC 49 ms
61,356 KB
testcase_33 AC 49 ms
61,792 KB
testcase_34 AC 48 ms
61,396 KB
testcase_35 AC 49 ms
62,316 KB
testcase_36 AC 50 ms
63,064 KB
testcase_37 AC 49 ms
61,484 KB
testcase_38 AC 48 ms
61,964 KB
testcase_39 AC 48 ms
61,368 KB
testcase_40 AC 50 ms
61,888 KB
testcase_41 AC 49 ms
61,356 KB
testcase_42 AC 48 ms
60,980 KB
testcase_43 AC 49 ms
61,580 KB
testcase_44 AC 50 ms
61,856 KB
testcase_45 AC 48 ms
60,864 KB
testcase_46 AC 49 ms
61,272 KB
testcase_47 AC 49 ms
61,340 KB
testcase_48 AC 49 ms
60,432 KB
testcase_49 AC 50 ms
61,320 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