結果
問題 |
No.564 背の順
|
ユーザー |
|
提出日時 | 2018-10-12 15:14:01 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 385 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-12 17:47:16 |
合計ジャッジ時間 | 1,063 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 WA * 2 |
ソースコード
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 or l.index(h) == 10: print(str(l.index(h)+1) + 'st') elif l.index(h) == 1 or l.index(h) == 11: print(str(l.index(h)+1) + 'nd') elif l.index(h) == 2 or l.index(h) == 12: print(str(l.index(h)+1) + 'rd') else: print(str(l.index(h)+1) + 'th')