結果

問題 No.668 6.0*10^23
ユーザー takakin
提出日時 2020-05-15 14:23:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-18 23:49:20
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 41 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
N=input()
c=len(N)-1
a=int(N[0])
b=int(N[1])
if int(N[2])>=5:
  b+=1
  if b==10:
    a+=1
    b=0
print(str(a)+"."+str(b)+"*10^"+str(c))
0