結果

問題 No.669 対決!!! 飲み比べ
ユーザー iwkjoseciwkjosec
提出日時 2018-03-26 23:57:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 103,924 KB
実行使用メモリ 24,088 KB
最終ジャッジ日時 2023-09-07 18:38:49
合計ジャッジ時間 5,250 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
21,960 KB
testcase_01 AC 58 ms
21,924 KB
testcase_02 AC 60 ms
23,900 KB
testcase_03 AC 59 ms
23,860 KB
testcase_04 AC 59 ms
22,000 KB
testcase_05 AC 59 ms
23,892 KB
testcase_06 AC 59 ms
21,856 KB
testcase_07 AC 59 ms
23,904 KB
testcase_08 AC 59 ms
21,876 KB
testcase_09 AC 59 ms
23,852 KB
testcase_10 AC 59 ms
19,808 KB
testcase_11 AC 58 ms
21,852 KB
testcase_12 AC 61 ms
21,936 KB
testcase_13 AC 58 ms
19,764 KB
testcase_14 AC 60 ms
21,928 KB
testcase_15 AC 59 ms
19,820 KB
testcase_16 AC 60 ms
23,996 KB
testcase_17 AC 60 ms
21,876 KB
testcase_18 AC 59 ms
21,852 KB
testcase_19 AC 60 ms
23,888 KB
testcase_20 AC 60 ms
23,844 KB
testcase_21 AC 60 ms
21,860 KB
testcase_22 AC 60 ms
21,916 KB
testcase_23 AC 68 ms
22,056 KB
testcase_24 AC 68 ms
24,088 KB
testcase_25 AC 60 ms
23,848 KB
testcase_26 AC 59 ms
21,872 KB
testcase_27 AC 59 ms
21,780 KB
testcase_28 AC 59 ms
21,964 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.Collections.Generic;
using System.Linq;
using static System.Console;

class Program
{
    static void Main()
    {
        var K = ReadLine().Split().Select(int.Parse).ToArray();
        WriteLine(ReadLine().Split().Select(int.Parse).Select(x => x % (K[1] + 1)).Aggregate((x, y) => x ^ y) == 0 ? "NO" : "YES");
    }
}
0