結果

問題 No.267 トランプソート
ユーザー bluemegane
提出日時 2018-10-02 08:51:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 587 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 109,280 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-10-12 10:02:01
合計ジャッジ時間 2,144 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    public static void Main()
    {
        var ans = new List<string>(52);
        var m = new string[] { "D", "C", "H", "S" };
        var m2 = "A23456789TJQK";
        Console.ReadLine();
        string[] s = Console.ReadLine().Trim().Split(' ');
        for (int i = 0; i < 4; i++)
            for (int j = 0; j < 13; j++)
            {
                var a = m[i] + m2[j];
                if (s.Contains(a)) ans.Add(a);
            }
        Console.WriteLine(string.Join(" ", ans));
    }
}
0