結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Joy YehJoy Yeh
提出日時 2019-02-24 16:54:54
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,040 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 62,144 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-02 10:04:28
合計ジャッジ時間 1,705 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 30 ms
5,376 KB
testcase_09 AC 28 ms
5,376 KB
testcase_10 AC 62 ms
5,376 KB
testcase_11 AC 61 ms
5,376 KB
testcase_12 AC 62 ms
5,376 KB
testcase_13 AC 64 ms
5,376 KB
testcase_14 AC 64 ms
5,376 KB
testcase_15 AC 65 ms
5,376 KB
testcase_16 AC 74 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>

using namespace std;

int parseInt() {
	string line;
	getline(std::cin, line);

	size_t parsed;
	int const N = stoi(line, &parsed);
	if (parsed != line.size()) {
		cout << "Malformed integer input: " << line << endl;
		exit(1);
	}

	return N;
}

typedef unsigned long long NumberPart; /* 0~2^64-1 */
typedef unsigned char Digit; /* 0~255 */
void accumulate(vector<Digit> &digits, NumberPart part) {
	// Add each digit from part to digits using division by 10
	size_t di = 0;
	bool carry = 0;
	while (part or carry) {
		while (di >= digits.size()) {
			digits.push_back(0);
		}

		Digit const sum = digits[di] + (part % 10) + carry;
		carry = sum / 10;
		digits[di] = sum % 10;

		di++;
		part /= 10;
	}
}

int main(void) {
	int const N = parseInt();

	vector<Digit> digits;
	for (int i = 0; i < N; ++i) {
		NumberPart part;
		cin >> part;
		accumulate(digits, part);
	}

	for (int i = digits.size() - 1; i >= 0; --i) {
		cout << to_string(digits[i]);
	}

	cout << endl;

	return 0;
}
0