AtCoder Beginner Contest 199 A
種別: 記事
カテゴリ: 競技プログラミング
サブカテゴリ: AtCoder > AtCoder Beginner Contest 199
タグ: #解いた問題
(工事中)
2021年4月24日にAtCoder で開催されたコンテストであるAtCoder Beginner Contest 199 のA問題に関するメモ
解き方
解答例
下は上記の方法で解いたときの提出結果である。また、その提出の際に提出したソースコードをその下に転記する。
code: C
#include <stdio.h>
int main () {
int a = 0;
int b = 0;
int c = 0;
int res = 0;
res = scanf("%d", &a);
res = scanf("%d", &b);
res = scanf("%d", &c);
if (a*a + b*b < c*c) {
printf("Yes\n");
} else {
printf("No\n");
}
return 0;
}
私の提出一覧
table: submissions_atcoder_begginer_contest_199_A
提出のURL 提出時刻 結果 備考
1回目 https://atcoder.jp/contests/abc199/submissions/21997330 2021-04-24T21:03:18+0900 AC
感想