結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | tetsuzuki1115 |
提出日時 | 2018-09-29 03:54:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,986 bytes |
コンパイル時間 | 1,056 ms |
コンパイル使用メモリ | 100,844 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 07:59:58 |
合計ジャッジ時間 | 1,867 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,820 KB |
testcase_29 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <math.h> #include <cmath> #include <limits.h> #include <map> #include <unordered_map> #include <set> #include <queue> #include <algorithm> #include <functional> #include <stdio.h> using namespace std; long long MOD = 1000000007; vector<string> split(const string &str, char sep) { vector<string> v; // 分割結果を格納するベクター auto first = str.begin(); // テキストの最初を指すイテレータ while( first != str.end() ) { // テキストが残っている間ループ auto last = first; // 分割文字列末尾へのイテレータ while( last != str.end() && *last != sep ) // 末尾 or セパレータ文字まで進める ++last; v.push_back(string(first, last)); // 分割文字を出力 if( last != str.end() ) ++last; first = last; // 次の処理のためにイテレータを設定 } return v; } int main() { int N; cin >> N; vector<string> VS(N); for ( int i = 0; i < N; i++ ) { cin >> VS[i]; } long long a,b; a = b = 0; for ( int i = 0; i < N; i++ ) { vector<string> s = split(VS[i],'.'); a += stoll( s[0] ); if ( s.size() > 1 ) { string t = s[1]; while ( t.length() < 10 ) { t += '0'; } long long c = ( s[0][0] == '-' ) ? -stoll(t) : stoll(t); b += c; } } a += b/10000000000; if ( a == 0 && b < 0 ) { cout << "-"; } if ( a > 0 && b < 0 ) { a--; b += 10000000000; } if ( a < 0 && b > 0 ) { a++; b = 10000000000-b; cout << "-"; } if ( b < 0 ) { b = -b; } b %= 10000000000; string x = to_string(b); while ( x.length() < 10 ) { x += '0'; } cout << a << "." << x << endl; return 0; }