Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

Nagadon's blog

By Nagadon, history, 3 years ago, In English
  • Vote: I like it
  • -10
  • Vote: I do not like it

| Write comment?
»
3 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Regular cin/cout are slow. Use some implementation of fast I/O, like printf/scanf or ios_base::sync_with_stdio(false); cin.tie(NULL);.