結果

問題 No.965 門松列が嫌い
ユーザー bal4ubal4u
提出日時 2020-01-13 21:08:49
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 490 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 28,800 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-02 04:00:14
合計ジャッジ時間 637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// yuki 965 門松列が嫌い
// 2019.1.13 bal4u

#include <stdio.h>

int getchar_unlocked(void);
#define gc() getchar_unlocked()

int in() {   // 非負整数の入力
	int n = 0, c = gc();
	do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0');
	return n;
}

#define ABS(a)  ((a)>=0?(a):-(a))
#define MIN(a,b) ((a)<=(b)?(a):(b))

int main()
{
	int A, B, C, ans;
	
	A = in(), B = in(), C = in();
	ans = MIN(ABS(A-B), ABS(B-C));
	ans = MIN(ans, ABS(A-C));
	printf("%d\n", ans);
	return 0;
}
0