TopCoder

User's AC Ratio

76.5% (65/85)

Submission's AC Ratio

51.8% (184/355)

Tags

Description

給定整數 ab,請輸出 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

  • 0a,b2×109

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