Hello Codeforces.
I made two identical submissions on the same problem.
C++ 17(64bit) — 842ms.
C++ 20(64bit) — 1138ms.
Does anyone know why the time differs so much?
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | dXqwq | 3436 |
| 8 | Radewoosh | 3415 |
| 9 | Otomachi_Una | 3413 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 158 |
| 2 | adamant | 152 |
| 3 | Proof_by_QED | 146 |
| 3 | Um_nik | 146 |
| 5 | Dominater069 | 144 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 9 | TheScrasse | 134 |
Hello Codeforces.
I made two identical submissions on the same problem.
C++ 17(64bit) — 842ms.
C++ 20(64bit) — 1138ms.
Does anyone know why the time differs so much?
| Name |
|---|



In my opinion C++20 is usually much quicker. Maybe it depends on the code.
Removing two lines containing the following makes both c++ versions run in the same amount of time:
C++17: 623ms/623ms
C++20: 623ms/624ms
Obviously, the problem was that compilers couldn't fully optimize away the unused call, but I don't know any details why such a difference.