結果
問題 | No.668 6.0*10^23 |
ユーザー |
![]() |
提出日時 | 2018-03-23 22:35:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 506 bytes |
コンパイル時間 | 1,607 ms |
コンパイル使用メモリ | 165,772 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 05:09:41 |
合計ジャッジ時間 | 2,909 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 50 |
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;typedef unsigned long long ull;#define rep(i,a) for(int i=0;i<(a);i++)#define MOD 1000000007int main(){string s; cin>>s;int num=s.length()-1;if(s.length()>2){if((s[2]-'0')>=5){if((s[1]-'0')<9) s[1]++;else{s[1]='0';if((s[0]-'0')<9){s[0]++;}else{s[0]='1';num++;}}}}cout<<s[0]<<"."<<s[1]<<"*10^"<<num<<endl;return 0;}