結果

問題 No.998 Four Integers
ユーザー curryudon08curryudon08
提出日時 2020-06-24 16:50:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 441 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 103,604 KB
実行使用メモリ 24,124 KB
最終ジャッジ日時 2023-09-16 21:07:08
合計ジャッジ時間 5,566 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
23,984 KB
testcase_01 AC 63 ms
21,940 KB
testcase_02 AC 63 ms
21,760 KB
testcase_03 AC 63 ms
23,816 KB
testcase_04 AC 64 ms
21,836 KB
testcase_05 AC 64 ms
21,772 KB
testcase_06 AC 64 ms
21,996 KB
testcase_07 AC 64 ms
21,924 KB
testcase_08 AC 63 ms
22,000 KB
testcase_09 AC 64 ms
24,124 KB
testcase_10 AC 64 ms
22,008 KB
testcase_11 AC 63 ms
21,924 KB
testcase_12 AC 63 ms
22,028 KB
testcase_13 AC 64 ms
23,908 KB
testcase_14 AC 64 ms
23,956 KB
testcase_15 AC 64 ms
22,036 KB
testcase_16 AC 63 ms
21,824 KB
testcase_17 AC 64 ms
21,988 KB
testcase_18 AC 63 ms
21,868 KB
testcase_19 AC 63 ms
21,868 KB
testcase_20 AC 64 ms
21,920 KB
testcase_21 AC 63 ms
21,920 KB
testcase_22 AC 63 ms
23,948 KB
testcase_23 AC 63 ms
21,876 KB
testcase_24 AC 63 ms
23,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

namespace _0998
{
    class Program
    {
        static void Main(string[] args)
        {
            var s = Console.ReadLine().Split().Select(x => int.Parse(x)).OrderBy(x => x).ToArray();

            if((s[1] == s[0] + 1) && (s[2] == s[1] + 1) && (s[3] == s[2] + 1)){
                Console.WriteLine("Yes");
            }else{
                Console.WriteLine("No");
            }
        }
    }
}
0