結果
問題 | No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用) |
ユーザー | Joy Yeh |
提出日時 | 2019-02-24 16:55:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 78 ms / 2,000 ms |
コード長 | 1,048 bytes |
コンパイル時間 | 510 ms |
コンパイル使用メモリ | 61,912 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 10:05:01 |
合計ジャッジ時間 | 1,847 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 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 | 7 ms
5,376 KB |
testcase_08 | AC | 30 ms
5,376 KB |
testcase_09 | AC | 32 ms
5,376 KB |
testcase_10 | AC | 61 ms
5,376 KB |
testcase_11 | AC | 62 ms
5,376 KB |
testcase_12 | AC | 66 ms
5,376 KB |
testcase_13 | AC | 66 ms
5,376 KB |
testcase_14 | AC | 66 ms
5,376 KB |
testcase_15 | AC | 71 ms
5,376 KB |
testcase_16 | AC | 78 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
ソースコード
#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 = { 0 }; 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; }