結果

問題 No.564 背の順
ユーザー kpinkcat
提出日時 2023-07-31 02:09:22
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 1,037 ms
コンパイル使用メモリ 111,824 KB
最終ジャッジ日時 2025-02-15 21:07:17
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<cctype>
#include<set>
#include<bitset>
#include<math.h>
#include<map>
#include<queue>
#include<iomanip>
using namespace std;

int main(){
    int h, n, p;
    cin >> h >> n;
    string s;
    vector<int> ht(n);
    ht[0] = h;
    for (int i=1; i < n; i++) cin >> ht[i];
    sort(ht.begin(), ht.end(), greater());
    auto itr = find(ht.begin(), ht.end(), h);
    p = distance(ht.begin(), itr);
    s = to_string(p+1);
    if (s[s.size()-1] == '1') s += "st";
    else if (s[s.size()-1] == '2') s += "nd";
    else if (s[s.size()-1] == '3') s += "rd";
    else s += "th";
    cout << s << endl;
}
0