結果

問題 No.5001 排他的論理和でランニング
ユーザー keymoonkeymoon
提出日時 2020-12-31 22:31:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 101 ms / 1,500 ms
コード長 588 bytes
コンパイル時間 697 ms
実行使用メモリ 32,996 KB
スコア 24,513,786
最終ジャッジ日時 2020-12-31 22:32:08
合計ジャッジ時間 9,221 ms
ジャッジサーバーID
(参考情報)
judge9 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
32,116 KB
testcase_01 AC 37 ms
20,716 KB
testcase_02 AC 40 ms
21,492 KB
testcase_03 AC 53 ms
24,368 KB
testcase_04 AC 83 ms
32,760 KB
testcase_05 AC 47 ms
23,332 KB
testcase_06 AC 55 ms
25,332 KB
testcase_07 AC 59 ms
26,088 KB
testcase_08 AC 79 ms
31,908 KB
testcase_09 AC 33 ms
19,452 KB
testcase_10 AC 45 ms
22,028 KB
testcase_11 AC 50 ms
24,044 KB
testcase_12 AC 43 ms
22,188 KB
testcase_13 AC 77 ms
32,020 KB
testcase_14 AC 57 ms
25,644 KB
testcase_15 AC 47 ms
23,296 KB
testcase_16 AC 38 ms
20,960 KB
testcase_17 AC 42 ms
21,616 KB
testcase_18 AC 80 ms
25,232 KB
testcase_19 AC 48 ms
22,968 KB
testcase_20 AC 44 ms
21,672 KB
testcase_21 AC 43 ms
21,740 KB
testcase_22 AC 36 ms
20,260 KB
testcase_23 AC 34 ms
20,000 KB
testcase_24 AC 45 ms
22,752 KB
testcase_25 AC 60 ms
26,584 KB
testcase_26 AC 57 ms
25,508 KB
testcase_27 AC 48 ms
23,032 KB
testcase_28 AC 62 ms
25,956 KB
testcase_29 AC 65 ms
27,528 KB
testcase_30 AC 37 ms
20,784 KB
testcase_31 AC 59 ms
26,028 KB
testcase_32 AC 43 ms
22,036 KB
testcase_33 AC 101 ms
32,460 KB
testcase_34 AC 82 ms
32,824 KB
testcase_35 AC 59 ms
25,892 KB
testcase_36 AC 75 ms
32,000 KB
testcase_37 AC 60 ms
26,408 KB
testcase_38 AC 43 ms
21,840 KB
testcase_39 AC 47 ms
23,620 KB
testcase_40 AC 50 ms
23,676 KB
testcase_41 AC 37 ms
20,744 KB
testcase_42 AC 50 ms
23,948 KB
testcase_43 AC 53 ms
24,240 KB
testcase_44 AC 70 ms
30,788 KB
testcase_45 AC 73 ms
31,720 KB
testcase_46 AC 81 ms
27,320 KB
testcase_47 AC 48 ms
23,620 KB
testcase_48 AC 44 ms
21,972 KB
testcase_49 AC 72 ms
30,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.6.0-4.20224.5 (ec77c100)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;

public static class P
{
    public static void Main()
    {
        var nm = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var n = nm[0];
        var m = nm[1];
        var a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        Console.WriteLine(string.Join(" ", a.Take(m)));
    }
}
0