Upgrade to Pro — share decks privately, control downloads, hide ads and more …

競技プログラミング入門

 競技プログラミング入門

競技プログラミングやろうぜ会のスライド

Yuki Okuda

June 24, 2019
Tweet

More Decks by Yuki Okuda

Other Decks in Programming

Transcript

  1. 例題の解答(JS) function main(input) { input = input.split(" "); x =

    input[0]; a = input[1]; console.log(x < a ? 0 : 10); } main(require("fs").readFileSync("/dev/stdin", "utf8"));