Please read the new rule regarding the restriction on the use of AI tools. ×

PyPy 3 question
Difference between ru1 and ru2, changed 7 character(s)
Hi!↵

I couldn't understand why two solutions below works differently.↵

Problem: https://codeforces.me/contest/1675/problem/F↵

Two solutions:↵

1. https://codeforces.me/contest/1675/submission/156139655 — Passed, fastest among PyPy 3 64-bit solutions. 
2. https://codeforces.me/contest/1675/submission/156139626 — TLE↵

The main difference is in input reading:↵

1. A = {int(e) — 1 for e in input().split()}↵
2. A = {int(e) for e in input().split()}↵

It would be great to understand what is wrong with the second solution?↵

Thanks!

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
ru2 Russian Aksnov 2022-05-07 15:29:47 7 Мелкая правка: 'lutions.\n2. https' -> 'lutions.\n\n2. https'
ru1 Russian Aksnov 2022-05-06 23:47:40 573 Первая редакция (опубликовано)