code_formula_2014_qualB/

directory
v0.0.0-...-23e9799 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 15, 2021 License: MIT

README

Code Formula 2014予選B 過去問感想

Last Change: 2020-07-17 01:27:17.

A問題(@2020-07-17)

やるだけの極み。

B問題(@2020-03-27)

問題の指示通りにやるだけだが、1-basedだったり、文字列の後ろから処理する必要があるので、工夫する。

スライスをReverseしておくとやりやすいと思う。

C問題(@2020-03-22)

実装よりだと思う。

kmjpさんのブログを読んだ感じ、同じ解法なんだけどなぜか1つWAが取れない。

。。と思ったら nC2 の二重forループが間違っていた。アホか。

// 正解
for i := 0; i < n; i++ {
  for j := i+1; j < n; j++ {
    ...
  }
}

// アホ
for i := 0; i < n; i++ {
  for j := 1; j < n; j++ {
    ...
  }
}

Directories

Path Synopsis
a
b
c

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL