結果
| 問題 |
No.668 6.0*10^23
|
| コンテスト | |
| ユーザー |
はむ吉🐹
|
| 提出日時 | 2018-03-23 23:55:52 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 180 bytes |
| コンパイル時間 | 856 ms |
| コンパイル使用メモリ | 82,312 KB |
| 実行使用メモリ | 67,120 KB |
| 最終ジャッジ日時 | 2024-06-30 05:27:34 |
| 合計ジャッジ時間 | 4,326 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 WA * 2 RE * 41 |
ソースコード
#!/usr/bin/env pypy3
import math
def main():
n = int(input())
print("{:.1e}".format(n).replace("e+", "*10^").replace("^0", "^"))
if __name__ == '__main__':
main()
はむ吉🐹