Блог пользователя t.janssen52

Автор t.janssen52, 10 лет назад, По-английски

I always get runtime error on problem (#253A) I can't find the reason for this message.

In Python

import sys n,m=map(int, raw_input().split())

i=min(n,m)

print (n-i)*"B"+i*"GB" +(m-i)*"G"

in pascal

uses sysutils,math; var b,g,i,x:longint;

s,p,q:string;

begin read(b,g);

s:='';

i:=min(b,g);

for x:=1 to i do

s:=s+'BG';

for x:=1 to (b-i) do

s:=s+'B';

for x:=1 to (g-i) do

s:=s+'G';

writeln(s);

end.
On my computers the code works well what goes wrong here?

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
10 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

why don't you attach your submission here?

did you note that you should work with files for input/output in this problem?

»
10 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I saw that you have practiced lots of A and B of div-2. Perhaps you should start participating in div-2 contest. :)