結果
| 問題 | No.564 背の順 |
| コンテスト | |
| ユーザー |
osrgy01
|
| 提出日時 | 2021-01-07 10:18:30 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 20 ms / 2,000 ms |
| + 804µs | |
| コード長 | 253 bytes |
| 記録 | |
| コンパイル時間 | 55 ms |
| コンパイル使用メモリ | 14,720 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2026-09-20 23:09:25 |
| 合計ジャッジ時間 | 1,410 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge4_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
import bisect
h,n=map(int,input().split())
s=sorted(int(input()) for _ in range(n-1))
t=str(len(s)-bisect.bisect_right(s,h)+1)
if t[-1]=='1':
print(t+'st')
elif t[-1]=='2':
print(t+'nd')
elif t[-1]=='3':
print(t+'rd')
else:
print(t+'th')
osrgy01