結果
| 問題 |
No.564 背の順
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-10-12 15:11:01 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 269 bytes |
| コンパイル時間 | 128 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-10-12 17:47:15 |
| 合計ジャッジ時間 | 1,107 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 3 |
ソースコード
h, n = map(int, input().split())
l = [h]
for i in range(n-1):
l.append(int(input()))
l = sorted(l)[::-1]
if l.index(h) == 0:
print('1st')
elif l.index(h) == 1:
print('2nd')
elif l.index(h) == 2:
print('3rd')
else:
print( str(l.index(h)+1) + 'th')