結果

問題 No.669 対決!!! 飲み比べ
ユーザー iwkjoseciwkjosec
提出日時 2018-04-14 00:59:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 105,508 KB
実行使用メモリ 25,696 KB
最終ジャッジ日時 2023-09-09 04:57:32
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
21,744 KB
testcase_01 AC 59 ms
21,648 KB
testcase_02 AC 59 ms
21,568 KB
testcase_03 AC 60 ms
23,704 KB
testcase_04 AC 59 ms
21,520 KB
testcase_05 AC 59 ms
21,628 KB
testcase_06 AC 60 ms
23,672 KB
testcase_07 AC 60 ms
21,688 KB
testcase_08 AC 61 ms
23,660 KB
testcase_09 AC 58 ms
21,552 KB
testcase_10 AC 59 ms
21,680 KB
testcase_11 AC 58 ms
21,576 KB
testcase_12 AC 59 ms
21,832 KB
testcase_13 AC 59 ms
21,528 KB
testcase_14 AC 59 ms
23,564 KB
testcase_15 AC 59 ms
19,628 KB
testcase_16 AC 60 ms
23,648 KB
testcase_17 AC 60 ms
25,696 KB
testcase_18 AC 59 ms
21,836 KB
testcase_19 AC 59 ms
23,632 KB
testcase_20 AC 58 ms
21,516 KB
testcase_21 AC 58 ms
19,528 KB
testcase_22 AC 58 ms
21,720 KB
testcase_23 AC 67 ms
21,844 KB
testcase_24 AC 66 ms
23,860 KB
testcase_25 AC 58 ms
23,656 KB
testcase_26 AC 57 ms
21,712 KB
testcase_27 AC 58 ms
21,736 KB
testcase_28 AC 58 ms
21,756 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 = int.Parse(ReadLine().Split()[1]);
        WriteLine(ReadLine().Split().Select(x => int.Parse(x) % (K + 1)).Aggregate((x, y) => x ^ y) != 0 ? "YES" : "NO");
    }
}
0