编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#82265 #113. 送分 A + B Accepted 100 126 ms 3736 K C# / 440 B Dcrfasriel 2023-03-12 23:09:17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Text.RegularExpressions;

namespace ConsoleApp5
{
    internal class Program
    {
        static void Main(string[] args)
        {
            var s = Console.ReadLine().Split(' ');
            Console.WriteLine(int.Parse(s[0]) + int.Parse(s[1]));
        }  
    }
}
子任务 #1
Accepted
得分:100
测试点 #1
Accepted
得分:100
用时:42 ms
内存:3608 KiB

输入文件(apb0.in

11134 2245

答案文件(apb0.out

13379

用户输出

13379

系统信息

Exited with return code 0
测试点 #2
Accepted
得分:100
用时:43 ms
内存:3648 KiB

输入文件(apb1.in

1 1

答案文件(apb1.out

2

用户输出

2

系统信息

Exited with return code 0
测试点 #3
Accepted
得分:100
用时:41 ms
内存:3736 KiB

输入文件(apb2.in

123 456

答案文件(apb2.out

579

用户输出

579

系统信息

Exited with return code 0