結果
問題 | No.267 トランプソート |
ユーザー |
![]() |
提出日時 | 2018-10-02 08:49:33 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 27 ms / 1,000 ms |
コード長 | 611 bytes |
コンパイル時間 | 813 ms |
コンパイル使用メモリ | 109,152 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-10-12 10:01:56 |
合計ジャッジ時間 | 2,168 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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.
ソースコード
using System.Collections.Generic; using System.Linq; using System; public class Hello { public static void Main() { var ans = new List<string>(); var m = new string[] { "D", "C", "H", "S" }; var m2 = "A23456789TJQK"; var n = int.Parse(Console.ReadLine().Trim()); 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)); } }