結果

問題 No.965 門松列が嫌い
ユーザー with_yoruwith_yoru
提出日時 2020-01-13 21:12:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 23 ms / 1,000 ms
コード長 537 bytes
コンパイル時間 865 ms
コンパイル使用メモリ 113,840 KB
実行使用メモリ 26,004 KB
最終ジャッジ日時 2024-06-02 04:08:11
合計ジャッジ時間 1,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
23,980 KB
testcase_01 AC 22 ms
24,032 KB
testcase_02 AC 22 ms
23,856 KB
testcase_03 AC 22 ms
22,196 KB
testcase_04 AC 21 ms
24,088 KB
testcase_05 AC 22 ms
21,808 KB
testcase_06 AC 23 ms
23,964 KB
testcase_07 AC 22 ms
22,072 KB
testcase_08 AC 21 ms
22,064 KB
testcase_09 AC 23 ms
26,004 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace yoru
{
	class Program
	{
		static void Main(string[] args)
		{
			string[] inputString = Console.ReadLine().Split(' ');
			Int64 A = Int64.Parse(inputString[0]);
			Int64 B = Int64.Parse(inputString[1]);
			Int64 C = Int64.Parse(inputString[2]);

			Int64 diff1 = (A > B) ? (A - B) : -(A - B);
			Int64 diff2 = (B > C) ? (B - C) : -(B - C);
			Int64 diff3 = (C > A) ? (C - A) : -(C - A);

			Int64 diffMin = Math.Min(diff1, Math.Min(diff2, diff3));

			Console.WriteLine(diffMin.ToString());
			return;
		}
	}
}
0