luogu_official's blog

By luogu_official, history, 16 hours ago, In English

We will hold Luogu Round 204 on Luogu. This is a Div.2 Round and English statement will be provided officially.

We are looking forward to your participation! English statement will be provided officially.

  • Vote: I like it
  • +75
  • Vote: I do not like it

»
16 hours ago, # |
  Vote: I like it -40 Vote: I do not like it

qp

»
16 hours ago, # |
  Vote: I like it +34 Vote: I do not like it

As a tester, the problems are excellent and I recommend everyone to participate!

»
16 hours ago, # |
  Vote: I like it -28 Vote: I do not like it

qp

»
16 hours ago, # |
  Vote: I like it +1 Vote: I do not like it

Warning: This is Codeforces, a place where "qp" shouldn't appear. No one knows what "qp" means except those who can speak Chinese.

»
15 hours ago, # |
  Vote: I like it +3 Vote: I do not like it

Finally as a TESTER. These tasks are very great; they make my brain spin.

»
15 hours ago, # |
  Vote: I like it +31 Vote: I do not like it

WOW, I see 251Sec in testers!

»
12 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

Can you say what command line parameters you use for compiling rust code?

  • »
    »
    12 hours ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    The command for compiling is:

    # add -C opt-level=2 when O2 is enabled
    rustc --edition 2021 -W warnings
    

    and rust compiler version:

    $ rustc -V
    rustc 1.76.0-nightly (2c1b65ee1 2023-11-11)
    

    You can search for technical details from here.