結果
問題 |
No.668 6.0*10^23
|
ユーザー |
|
提出日時 | 2018-11-13 10:09:35 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 121 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-01 05:08:27 |
合計ジャッジ時間 | 3,027 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 8 WA * 2 RE * 40 |
ソースコード
s = input() t = len(s) s = int(s) s = round(s, -(t-2)) s = str(s) t = len(s) print(s[0] + '.' + s[1] + '*10^' + str(t-1))