結果
問題 | No.668 6.0*10^23 |
ユーザー |
![]() |
提出日時 | 2018-03-23 22:34:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 293 bytes |
コンパイル時間 | 1,546 ms |
コンパイル使用メモリ | 167,044 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-30 05:08:40 |
合計ジャッジ時間 | 2,857 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 50 |
ソースコード
#include<bits/stdc++.h>using namespace std;using Int = long long;//INSERT ABOVE HEREsigned main(){string s;cin>>s;Int n=s.size();Int x=(s[0]-'0')*100+(s[1]-'0')*10+(s[2]-'0')*1;x=(x+5)/10;if(x==100) x=10,n++;cout<<(x/10)<<"."<<(x%10)<<"*10^"<<n-1<<endl;return 0;}