結果
| 問題 |
No.668 6.0*10^23
|
| コンテスト | |
| ユーザー |
vrjfsyi
|
| 提出日時 | 2018-04-01 16:37:49 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 779 bytes |
| コンパイル時間 | 529 ms |
| コンパイル使用メモリ | 68,856 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-30 05:43:36 |
| 合計ジャッジ時間 | 1,833 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 50 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include <array>
#include <map>
#include <stack>
#include <queue>
#include <set>
using namespace std;
int main() {
string N;
cin >> N;
int lengthOfExponent = static_cast<int>(N.length() - 1);
int a = N[0] - '0';
int b = N[1] - '0';
int c = N[2] - '0';
if (c >= 5) {
b += 1;
if (b == 10) {
b = 0;
a += 1;
if (a == 10) {
a = 1;
lengthOfExponent += 1;
}
}
}
string result = "";
result += to_string(a);
result += ".";
result += to_string(b);
result += ("*10^" + to_string(lengthOfExponent));
cout << result << "\n";
return 0;
}
vrjfsyi