結果

問題 No.564 背の順
ユーザー Hagian
提出日時 2021-06-19 08:26:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-22 21:53:41
合計ジャッジ時間 1,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 2 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

H, N = map(int, input().split())
T = [input().rstrip() for i in range(N-1)]
T = [int(i) for i in T]
T.append(H)
T.sort(reverse=True)
c = (T.index(H) + 1) % 10
if c == 1:
    print(str(c) + "st")
elif c == 2:
    print(str(c) + "nd")
elif c == 3:
    print(str(c) + "rd")
else:
    print(str(c) + "th")
0