1 solutions

  • 0
    @ 2025-11-5 18:38:32

    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

    Information

    ID
    18958
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By