結果
| 問題 | No.564 背の順 |
| コンテスト | |
| ユーザー |
osrgy01
|
| 提出日時 | 2021-01-07 10:18:30 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 97 ms / 2,000 ms |
| コード長 | 253 bytes |
| 記録 | |
| コンパイル時間 | 392 ms |
| コンパイル使用メモリ | 20,960 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-08 07:19:15 |
| 合計ジャッジ時間 | 2,433 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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