結果

問題 No.358 も~っと!門松列
ユーザー pengin_2000pengin_2000
提出日時 2020-02-21 22:03:22
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 514 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 31,104 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 07:38:10
合計ジャッジ時間 1,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int f(int a, int b, int c)
{
	if (a != b && a != c && b != c)
	{
		if (a<b && b>c)
			return 1;
		if (a > b&& b < c)
			return 1;
	}
	return 0;
}
int main()
{
	int a[3], i, n = 3;
	for (i = 0; i < n; i++)
		scanf("%d", &a[i]);
	if (f(a[0], a[1], a[2]) > 0)
	{
		printf("INF\n");
		return 0;
	}
	int ans = 0;
	int max = 0;
	for (i = 0; i < n; i++)
		if (max < a[i])
			max = a[i];
	for (i = 1; i <= max; i++)
		if (f(a[0] % i, a[1] % i, a[2] % i) > 0)
			ans++;
	printf("%d\n", ans);
	return 0;
} 
0