結果

問題 No.564 背の順
ユーザー superzugansuperzugan
提出日時 2019-07-16 23:32:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 404 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 10,656 KB
実行使用メモリ 7,916 KB
最終ジャッジ日時 2023-08-21 16:55:10
合計ジャッジ時間 1,776 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x,n=map(int,input().split())
lst=sorted(int(input()) for _ in range(n-1))[::-1]
print(lst)
# lst = sorted(list(range(1,101)))[::-1]
for i,j in enumerate(lst):
    if x>=j  :
        print(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