結果

問題 No.564 背の順
ユーザー superzugan
提出日時 2019-07-16 23:40:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-15 06:36:15
合計ジャッジ時間 982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

x,n=map(int,input().split())
lst=sorted(int(input()) for _ in range(n-1))[::-1]
for i,j in enumerate(lst):
    if x>=j  :
        if(i %10 <3) :print(str(i+1)+["st","nd","rd"][i%10]);break      
        else:print(str(i+1)+"th");break
else:
    if(n+1 %10 <3) :print(str(n)+["st","nd","rd"][n+1%10])      
    else:print(str(n)+"th")
0