結果
問題 | No.564 背の順 |
ユーザー |
![]() |
提出日時 | 2019-10-22 22:20:51 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 292 bytes |
コンパイル時間 | 73 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-05 00:07:59 |
合計ジャッジ時間 | 984 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 9 |
ソースコード
h, n = map(int,input().split()) lis = sorted([int(input()) for _ in range(n-1)] + [h], reverse=True) for i in range(n): if lis[i] == h: v = str(i+1)[-1] a = "st" if v == "1" else ("nd" if v == "2" else ("rd" if v == "3" else "th")) print(f"{i+1}{a}") break