結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | naimonon77 |
提出日時 | 2016-09-15 10:48:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,621 bytes |
コンパイル時間 | 1,647 ms |
コンパイル使用メモリ | 168,856 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 06:01:29 |
合計ジャッジ時間 | 3,595 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 1 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #define _USE_MATH_DEFINES #include "bits/stdc++.h" #define REP(i,a,b) for(i=a;i<b;++i) #define rep(i,n) REP(i,0,n) #define ll long long #define ull unsigned ll typedef long double ld; #define ALL(a) begin(a),end(a) #define ifnot(a) if(not a) #define dump(x) cerr << #x << " = " << (x) << endl using namespace std; // #define int ll bool test = 0; int dx[] = { 0,1,0,-1 }; int dy[] = { 1,0,-1,0 }; #define INF (1 << 28) ull mod = (int)1e9 + 7; //..................... #define MAX (int)1e6 + 5 /* pow(x,n)はx^nを返すよ! */ template<class T> T pow(T x, T n) { T res = 1; while (n > 0) { if (n & 1) res = res * x; x = x * x; n >>= 1; } return res; } signed main(void) { int i, j, k, l; int N; cin >> N; ll seisuu_bubun = 0; ll syousyuu_bubun = 0; rep(i, N) { string val_str; cin >> val_str; bool is_minus = false; if (val_str[0] == '-') is_minus = true; seisuu_bubun += stoi(val_str); rep(j, val_str.size()) { if (val_str[j] == '.') break; } if (j == val_str.size()) continue; val_str = val_str.substr(j+1); ll j_syousyuu_bubun = 0; rep(j, val_str.size()) { j_syousyuu_bubun += (val_str[j] - '0')*pow((ll)10, (ll)9 - j); } if (is_minus) j_syousyuu_bubun *= -1; syousyuu_bubun += j_syousyuu_bubun; } if (syousyuu_bubun < 0) { seisuu_bubun -= abs(syousyuu_bubun) / (ll)1e10 + 1; syousyuu_bubun = abs(syousyuu_bubun) % (ll)1e10; syousyuu_bubun += (ll)1e10; } seisuu_bubun += syousyuu_bubun / (ll)1e10; syousyuu_bubun %= (ll)1e10; cout << seisuu_bubun; printf(".%010lld", syousyuu_bubun); cout << endl; return 0; }