結果
| 問題 |
No.81 すべて足すだけの簡単なお仕事です。
|
| コンテスト | |
| ユーザー |
zerokugi
|
| 提出日時 | 2014-11-27 23:48:43 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 2,669 bytes |
| コンパイル時間 | 856 ms |
| コンパイル使用メモリ | 96,876 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-15 00:28:10 |
| 合計ジャッジ時間 | 1,759 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 WA * 1 |
ソースコード
#include <cstdio>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <climits>
#include <ctime>
#include <queue>
#include <stack>
#include <algorithm>
#include <list>
#include <vector>
#include <set>
#include <map>
#include <iostream>
#include <deque>
#include <complex>
#include <string>
#include <iomanip>
#include <sstream>
#include <bitset>
#include <valarray>
#include <iterator>
using namespace std;
typedef long long int ll;
typedef unsigned int uint;
typedef unsigned char uchar;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
#define REP(i,x) for(int i=0;i<(int)(x);i++)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();i++)
#define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--)
#define RFOR(i,c) for(__typeof((c).rbegin())i=(c).rbegin();i!=(c).rend();i++)
#define ALL(container) container.begin(), container.end()
#define RALL(container) container.rbegin(), container.rend()
#define SZ(container) ((int)container.size())
#define mp(a,b) make_pair(a, b)
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T> ostream& operator<<(ostream &os, const vector<T> &t) {
os<<"["; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"]"; return os;
}
template<class T> ostream& operator<<(ostream &os, const set<T> &t) {
os<<"{"; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"}"; return os;
}
template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";}
const int INF = 1<<28;
const double EPS = 1e-8;
const int MOD = 1000000007;
int n;
int main(){
ios::sync_with_stdio(false);
while(cin >> n){
ll p = 0, q = 0;
REP(i, n){
string s;
cin >> s;
ll a, b;
auto it = find(ALL(s), '.');
if(it == s.end()){
a = atoll(s.c_str());
b = 0;
}else{
int f = 0;
if(s[0] == '-') f = 1;
a = atol(s.substr(0, it-s.begin()).c_str());
s = s.substr(it-s.begin()+1);
s += string(10 - s.size(), '0');
b = atoll(s.c_str()) * (f ? -1 : 1);
}
p += a;
q += b;
}
p += q/10000000000ll;
q %= 10000000000ll;
if(p < 0 && q > 0){
p++;
q -= 10000000000;
}
if(p > 0 && q < 0){
p--;
q += 10000000000;
}
if(p <= 0 && q <= 0) printf("-%lld.%010lld\n", -p, -q);
else if(p >= 0 && q >= 0) printf("%lld.%010lld\n", p, q);
}
return 0;
}
zerokugi