結果

問題 No.564 背の順
ユーザー osrgy01
提出日時 2021-01-07 10:18:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-07 23:58:34
合計ジャッジ時間 1,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
h,n=map(int,input().split())
s=sorted(int(input()) for _ in range(n-1))
t=str(len(s)-bisect.bisect_right(s,h)+1)
if t[-1]=='1':
    print(t+'st')
elif t[-1]=='2':
    print(t+'nd')
elif t[-1]=='3':
    print(t+'rd')
else:
    print(t+'th')
0