結果
問題 | No.267 トランプソート |
ユーザー | sggkshio |
提出日時 | 2016-11-24 23:10:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 964 bytes |
コンパイル時間 | 690 ms |
コンパイル使用メモリ | 81,016 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 13:08:59 |
合計ジャッジ時間 | 1,332 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include<stdio.h> #include<string> #include<iostream> #include<cctype> #include<cstdio> #include<vector> #include<stack> #include<queue> #include <algorithm> #include<math.h> #include<set> #include<map> #include<iomanip> //#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int d[4][15]={}; for(int i=0;i<n;i++){ char c;char g; cin>>c>>g;int a,b; if(c=='D')a=0; else if(c=='C')a=1; else if(c=='H')a=2; else a=3; if(g=='A')b=1; else if(g=='J')b=11; else if(g=='Q')b=12; else if(g=='K')b=13; else b=g-'0'; d[a][b]=1; } bool f=0; for(int i=0;i<4;i++){ for(int j=1;j<=13;j++){ if(d[i][j]){ if(f)cout<<" "; if(i==0)cout<<'D'; else if(i==1)cout<<'C'; else if(i==2)cout<<'H'; else cout<<'S'; if(j==1)cout<<'A'; else if(j==11)cout<<'J'; else if(j==12)cout<<'Q'; else if(j==13)cout<<'K'; else cout<<j; f=1; } } } cout<<endl; return 0; }