AtCoder Beginner Contest 086

Updated:

AtCoder Beginner Contest 086

Source codes

Solutions

A - Product

$ab \% 2 = 0$ かどうか判定する。

B - 1 21

Ruby だと

a, b = gets.chomp.split(" ").map{|i| i.to_s}
n = (a + b).to_i

のようにする。平方数の判定は $i = 0, 1, \dots, 1000$ を回せば十分だろう。

ポイント

解説も方針ぴったり同じだった。

Others