1 条题解

  • 0
    @ 2021-6-14 22:56:41

    C :

    #include<stdio.h>
    int main(){
    	printf("60");
    	return 0;
    }
    

    C++ :

    #include<iostream>
    using namespace std;
    int main()
    {
        cout<<"60";
        return 0;
    }
    
    

    Pascal :

    var
      n,m,i,j,x:longint;
    begin
      readln(n,m);
        for i:=1 to m do
        begin
          for j:=1 to n do
            read(x);
            readln(x);
          end;
          for i:=1 to n do
            read(x);
          writeln(60);
    end.
    
    • 1

    信息

    ID
    91
    时间
    1000ms
    内存
    128MiB
    难度
    10
    标签
    递交数
    1
    已通过
    1
    上传者