結果
| 問題 |
No.564 背の順
|
| コンテスト | |
| ユーザー |
yukiteru
|
| 提出日時 | 2017-10-08 10:45:51 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 806 bytes |
| コンパイル時間 | 671 ms |
| コンパイル使用メモリ | 79,988 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-17 05:26:52 |
| 合計ジャッジ時間 | 1,168 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 WA * 4 |
ソースコード
#include<iostream>
#include<string>
#include<string.h>
#include<algorithm>
#include<stdio.h>
#include<cmath>
#include<vector>
#include<utility>
#include<stack>
#include<queue>
#include<list>
#define FOR(i, a, b) for(int i=(a);i<=(b);i++)
#define RFOR(i, a, b) for(int i=(a);i>=(b);i--)
#define MOD 1000000007
#define INF 1000000001;
using namespace std;
int main(void) {
int H, n;
int h[101];
int p = 0;
cin >> H >> n;
FOR(i, 1, n-1) {
cin >> h[i];
}
sort(h, h + n);
RFOR(i, n-1, 1) {
p++;
if (H > h[i]) {
break;
}
if (i == 1) {
p = n;
break;
}
}
switch (p % 10) {
case 1:
cout << p << "st" << endl;
break;
case 2:
cout << p << "nd" << endl;
break;
case 3:
cout << p << "rd" << endl;
break;
default:
cout << p << "th" << endl;
break;
}
return 0;
}
yukiteru