結果

問題 No.564 背の順
ユーザー daku9640
提出日時 2018-03-19 00:14:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-30 08:52:45
合計ジャッジ時間 1,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

h, n = map(int, input().split())
H = [h]
for _ in range(n - 1):
    H.append(int(input()))
ans = sorted(H)[::-1].index(h) + 1
print(ans, end="")
if ans % 10 == 1:
    print("st")
elif ans % 10 == 2:
    print("nd")
elif ans % 10 == 3:
    print("rd")
else:
    print("th")
0