結果
| 問題 |
No.668 6.0*10^23
|
| コンテスト | |
| ユーザー |
mine691
|
| 提出日時 | 2018-09-01 21:56:15 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 158 bytes |
| コンパイル時間 | 495 ms |
| コンパイル使用メモリ | 63,984 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-01 04:13:30 |
| 合計ジャッジ時間 | 2,012 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 WA * 34 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main() {
string s;
cin >> s;
cout << s[0] << "." << s[1] << "*10^" << s.size() - 1 << endl;
}
mine691