結果

問題 No.564 背の順
ユーザー ngtkana
提出日時 2020-02-23 23:45:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 1,530 ms
コンパイル使用メモリ 165,800 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 00:08:30
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using longlong=long long;

int main(){
    std::cin.tie(nullptr);std::cin.sync_with_stdio(false);
    int h,n;std::cin>>h>>n;
    int ans=1;
    for(int i=0;i<n-1;i++){
        int x;std::cin>>x;
        if(h<x)ans++;
    }
    int r=ans%10;
    std::cout<<ans<<(r==1?"st":r==2?"nd":r==3?"rd":"th")<<std::endl;
}
0