結果
問題 | No.668 6.0*10^23 |
ユーザー |
![]() |
提出日時 | 2018-06-18 02:21:09 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 255 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-30 16:44:52 |
合計ジャッジ時間 | 3,006 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 8 WA * 2 RE * 40 |
ソースコード
text = input()orig = round( int( text ), -1*len(text)+2 )base = int( '1' + '0'*(len(text)-1) )head = f'{orig/base:0.1f}'pows = len(text)-1if float(head) >= 10.0:head = f'{float(head)/10.0:0.1f}'pows = len(text)print( f'{head}*10^{pows}')