• 个人简介

    This person is lazy and didn't join any contests or homework^_^.

    • Waiting 评测:评测请求正在等待被评测机抓取
    • Fetched 评测:评测请求已被评测机抓取,正在准备开始评测
    • Compiling 评测:正在编译中
    • Judging 评测:编译成功,正在评测中
    • Accepted 通过:程序输出完全正确
    • Wrong Answer 不通过:程序输出与标准答案不一致(不包括行末空格以及文件末空行)
    • Time Limit Exceeded 不通过:程序运行时间超过了题目限制
    • Memory Limit Exceeded 不通过:程序运行内存空间超过了题目限制
    • Runtime Error 不通过:程序运行时错误(如数组越界、被零除、运算溢出、栈溢出、无效指针等)
    • Compile Error 不通过:编译失败
    • System Error 错误:系统错误(如果您遇到此问题,请及时在讨论区进行反馈)
    • Canceled 其他:评测被取消
    • Unknown Error 其他:未知错误
    • Ignored 其他:被忽略

    有“成绩取消”字样则说明管理员手动标记此记录为取消,可能违反了服务条款,比如代码被发现与其他用户的代码十分相似。

    TLD(头文件列表大全)

    #include <stdio.h>

    #include <conio.h>

    #include <windows.h>

    #include <time.h>

    #define Height 31

    #define Width 25

    #define Wall 1

    #define Road 0

    #define Start 2

    #define End 3

    #define Esc 5

    #define Up 1

    #define Down 2

    #define Left 3

    #define Right 4 Gravatar

    #include<bits/stdc++.h> 
    #include<time.h>
    #include<stdio.h>
    using namespace std; 
    long long a[1001][1001];
    int main() 
    {
    	int n,m,s,d,t=0;
    	cin>>n>>m;
    	for(int i=1;i<=n;i++)
    	{
    		for(int j=1;j<=m;j++)
    		{
    			cin>>a[i][j];
    		}
    	}
    	cin>>s>>d;
    	for(int j=1;j<=m;j++)
    	{
    			t+=a[s][j]+a[d][j];
    	}
    	cout<<t;
    	return 0; 
    }
    总有一天,我要撕碎这片虚伪的星空。
  • 通过的题目

  • 最近活动

    This person is lazy and didn't join any contests or homework.

题目标签

循环嵌套
1
略有小成
1
二维数组
1
初窥门径
1