結果
| 問題 | No.564 背の順 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-16 23:36:49 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 268 bytes |
| 記録 | |
| コンパイル時間 | 974 ms |
| コンパイル使用メモリ | 21,288 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-29 18:21:31 |
| 合計ジャッジ時間 | 3,884 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 5 WA * 4 |
ソースコード
H,N=map(int,input().split())
list=[int(input())for x in range (N-1)]
list.append(H)
Nlist=sorted(list,reverse=True)
a=Nlist.index(H)+1
if a%10==1:
print(str(a)+'st')
if a%10==2:
print(str(a)+'nd')
if a%10==3:
print(str(a)+'rd')
else:
print(str(a)+'th')