結果
| 問題 |
No.564 背の順
|
| コンテスト | |
| ユーザー |
yukiteru
|
| 提出日時 | 2017-10-08 10:43:51 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 809 bytes |
| コンパイル時間 | 747 ms |
| コンパイル使用メモリ | 79,984 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-17 05:26:51 |
| 合計ジャッジ時間 | 1,283 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 4 WA * 5 |
ソースコード
#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+1);
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