結果

問題 No.267 トランプソート
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-28 01:18:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,201 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 208,848 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-28 01:18:55
合計ジャッジ時間 3,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

const ll mod = 1e9 + 7;

int main() {
    cin.tie(nullptr);
    
    int N;
    cin >> N;
    
    vector<pair<int, int>> card(N, {-1, -1});
    rep(i, 0, N) {
        char m, n;
        cin >> m >> n;
        
        if (m == 'D') card[i].first = 0;
        if (m == 'C') card[i].first = 1;
        if (m == 'H') card[i].first = 2;
        if (m == 'S') card[i].first = 3;
        
        if ('2' <= n && n <= '9') card[i].second = n - '1';
        else {
            if (n == 'A') card[i].second = 0;
            if (n == 'T') card[i].second = 9;
            if (n == 'J') card[i].second = 10;
            if (n == 'Q') card[i].second = 11;
            if (n == 'K') card[i].second = 12;
        }
    }
    
    
    sort(all(card));
    
    vector<char> mark = {'D', 'C', 'H', 'S'};
    vector<char> num = {'A', '2', '3', '4', '5', '6', '7', '8', '9', 'T', 'J', 'Q', 'K'};
    
    rep(i, 0, N) {
        cout << mark[card[i].first] << num[card[i].second];
        if (i == N - 1) cout << '\n';
        else cout << ' ';
    }
}
0