結果
問題 | No.564 背の順 |
ユーザー | gigime |
提出日時 | 2017-09-08 22:23:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 581 bytes |
コンパイル時間 | 1,610 ms |
コンパイル使用メモリ | 164,752 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 05:21:45 |
合計ジャッジ時間 | 2,486 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,l,r) for(int i = int(l);i < int(r);i++) template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; } template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; } typedef long long ll; int H,N; int main() { scanf("%d%d",&H,&N); int ans = 1; FOR(i,0,N - 1){ int a; scanf("%d",&a); ans += H < a; } if(ans == 1){ puts("1st"); } else if(ans == 2){ puts("2nd"); } else if(ans == 3){ puts("3rd"); } else{ printf("%dth\n",ans); } return 0; }