結果
問題 |
No.267 トランプソート
|
ユーザー |
![]() |
提出日時 | 2018-10-02 08:47:47 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 1,000 ms |
コード長 | 587 bytes |
コンパイル時間 | 942 ms |
コンパイル使用メモリ | 112,264 KB |
実行使用メモリ | 26,988 KB |
最終ジャッジ日時 | 2024-10-12 10:01:53 |
合計ジャッジ時間 | 2,327 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 = "DCHS"; 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)); } }