TopCoder

User's AC Ratio

79.4% (54/68)

Submission's AC Ratio

59.9% (169/282)

Tags

Description

給定整數 $a$ 和 $b$,請輸出 $a+b$。

以下為提供的解法,但是卻得到 WA,請在 edit distance

  • $7$ (easy, 30 分)
  • $3$ (mid, 30 分)
  • $1$ (hard, 40 分)

以內將該程式碼修改正確:

#include <iostream>
using namespace std;

int main() {
    long long a, b;
    // store a + b in ans
    int ans;
    cin >> a >> b;
    ans = a + b;
    cout << ans << "\n";
}

Input Format

輸入只有一行,此行輸入兩個整數 $a,b$。

  • $0\le a,b\le 2\times 10^ 9$

Output Format

輸出 $a+b$。

Sample Input 1

4 9

Sample Output 1

13

Hints

Problem Source

Subtasks

No. Testdata Range Constraints Score
1 0 範例測資。 0
2 0~2 無特別限制。 100

Testdata and Limits

No. Time Limit (ms) Memory Limit (VSS, KiB) Output Limit (KiB) Subtasks
0 1000 262144 65536 1 2
1 1000 262144 65536 2
2 1000 262144 65536 2