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?

More than 1 year has passed since last update.

ABC199 解説

Posted at

ABC199解説

この記事は何

この記事はABC199の復習として解説をしてみようというものです。

問題の解説

問題のリンクはこちら

A問題

A問題の公式解説のリンクはこちら
この問題は標準入力を正しく受けとり、標準出力を正しく行えればACが出ます。
以下は自分が書いたコードになります。

abc_199_a.py
A, B, C = map(int, input().split())

if A**2 + B**2 < C**2:
    print('Yes')
else:
    print('No')

B問題

B問題の公式解説のリンクはこちら

abc_312.py

C問題

C問題の公式解説のリンクはこちら

abc_312.py

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?