Need some help.... codeforces not working?

Правка en3, от YouCantTouchThis54, 2020-07-05 03:21:38

Hey so I was working on a problem recently and when I tested in custom invocation it worked.

When i submitted it didnt work?

Why would this happen?

Submission: 86015133 Problem: 344A - Magnets

Output On the single line of the output print the number of groups of magnets.

Code: ~~~~~ from sys import stdin, stdout def main(): n = int(stdin.readline()) l = 0 y = " " for x in range(0,n): y = stdin.readline() x = stdin.readline() if(x != y): l = l + 1 stdout.write(str(l+1)) main() ~~~~~

Image 1 Image 2

Please help, I have no idea what I'm doing wrong :(

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en4 Английский YouCantTouchThis54 2020-07-05 17:52:55 8
en3 Английский YouCantTouchThis54 2020-07-05 03:21:38 166
en2 Английский YouCantTouchThis54 2020-07-05 03:20:40 1257
en1 Английский YouCantTouchThis54 2020-07-05 03:19:37 1927 Initial revision (published)