0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

0.はじめに

 なんとなく、問題表示に時間かかったり、コードテストも時間かかったりした気がします。
 また攻撃とか受けてるのかな‥‥。
 D問題が解けそうで解けずに結局3問ACで終了。
 レートは+5と微増でした・・・。

1.A - Rearranging ABC

 ABC用にそれぞれフラグを持ち、それらの文字があったら
 1をセット。最後にフラグを合計して3だったらYes違ったらNoを出力して終了

 https://atcoder.jp/contests/abc377/submissions/59158888
 

2.B - Avoid Rook Attack

 行と列ごとに、駒がある数をカウント
 最後に、8から行駒カウントを引いた値と8から列駒カウントを引いた値を掛けた値を
 出力して終了

 https://atcoder.jp/contests/abc377/submissions/59165464

3.C - Avoid Knight Attack

 駒と駒が移動できる座標を保持するセットSを用意
 駒ごとに、駒位置とそこから移動出来る8か所をSに格納していく。
 その際、番からはみ出る場合は入れない。
 N×NからSの長さを引いた値を出力して終了

 https://atcoder.jp/contests/abc377/submissions/59172528

以上

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?