Nagadon's blog

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

| Write comment?
»
5 years ago, hide # |
 
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);.