結果

問題 No.564 背の順
コンテスト
ユーザー Meso Meso
提出日時 2024-05-04 20:18:23
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 295 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 480 ms
コンパイル使用メモリ 20,828 KB
実行使用メモリ 15,408 KB
最終ジャッジ日時 2026-05-20 20:39:58
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

l, n = map(int, input().split())

length = [int(input()) for _ in range(n-1)]

ans = length + [l]
ans.sort(reverse=True)

r = 1
for i in ans:
    if i > l:
        r += 1


if r == 1:
    print(f'{r}st')
elif r == 2:
    print(f'{r}nd')
elif r == 3:
    print(f'{r}rd')
else:
    print(f'{r}th')
0