結果

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

ソースコード

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 == 0:
			print('1st')
		elif i == 1:
			print('2nd')
		elif i == 2:
			print('3rd')
		elif i >= 3:
			print('{0}th'.format(i+1))
0