結果

問題 No.564 背の順
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-08-31 20:43:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 63,900 KB
最終ジャッジ日時 2024-08-31 20:43:16
合計ジャッジ時間 1,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
63,900 KB
testcase_01 AC 50 ms
63,232 KB
testcase_02 AC 51 ms
63,208 KB
testcase_03 AC 52 ms
63,004 KB
testcase_04 AC 49 ms
62,780 KB
testcase_05 AC 49 ms
62,272 KB
testcase_06 AC 49 ms
62,648 KB
testcase_07 AC 49 ms
62,336 KB
testcase_08 AC 50 ms
62,816 KB
testcase_09 AC 51 ms
62,584 KB
testcase_10 AC 49 ms
62,584 KB
testcase_11 AC 49 ms
63,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from functools import *
from heapq import *
from itertools import *
import sys, math,random

h,n = map(int,input().split())
H = [int(input()) for _ in range(n-1)]
H += [h]
H.sort(reverse=True)
suffix = defaultdict(lambda:'th')
suffix[1] = 'st'
suffix[2] = 'nd'
suffix[3] = 'rd'
for i,_h in enumerate(H):
    if _h==h:
        print(f"{i+1}{suffix[(i+1)%10]}")
        exit()
0