1 solutions

  • 0
    @ 2025-11-5 15:21:36

    Pascal :

    var
      n:string;
      i,sum,t,m:longint;
    begin
      readln(n);
      if pos('GB',n)<>0 then
        begin
          t:=pos('GB',n);
          val(copy(n,1,t-1),m);
          sum:=m*1024*1024;write('Cheng',' ','xu',' ','you:',sum,' ','ti');
        end
        else if pos('MB',n)<>0 then
          begin
            t:=pos('MB',n);
          val(copy(n,1,t-1),m);
          sum:=m*1024;write('Cheng',' ','xu',' ','you:',sum,' ','ti');
          end
          else write('error');
       end.
    
    • 1

    Information

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