PyPy 3 question

Revision ru2, by Aksnov, 2022-05-07 15:29:47

Hi!

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

Problem: https://codeforces.com/contest/1675/problem/F

Two solutions:

  1. https://codeforces.com/contest/1675/submission/156139655 — Passed, fastest among PyPy 3 64-bit solutions.
  2. https://codeforces.com/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!

Tags python, pypy, python 3, #python

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 Первая редакция (опубликовано)