結果

問題 No.564 背の順
ユーザー Ryupe
提出日時 2018-01-19 13:20:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-24 12:02:34
合計ジャッジ時間 1,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

H,N = map(int,input().split(' '))
Hn = [int(input()) for i in range(N-1)]
Hn.append(H)
Hn.sort(reverse=True)
for i in range(N):
	if Hn[i] != H:
		pass
	else:
		if i%10 == 0:
			print('{0}st'.format(i+1))
		elif i%10 == 1:
			print('{0}nd'.format(i+1))
		elif i%10 == 2:
			print('{0}rd'.format(i+1))
		elif i >= 3:
			print('{0}th'.format(i+1))
0