1 solutions

  • 0
    @ 2025-11-5 15:01:58

    C :

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

    C++ :

    #include <iostream>
    using namespace std;
    int main()
    {
         int a,b,c,count=0;
         for(a=1;a<100;a++)
             for(b=1;b<100;b++)
                 for(c=1;c<100;c++)
                     if(c*5+b*2+a==100)
                     count++;
    	               cout<<count<<endl;
    }
    

    Pascal :

    program bhf;
    var
      i,j,n,k,s,t,p:longint;
    begin
      for i:=1 to 100 do
      for j:=1 to 50 do
      for k:=1 to 20 do
      if i+j*2+k*5=100 then inc(t);
      writeln(t);
    end.
    
    
    
    
    • 1

    Information

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