結果

問題 No.564 背の順
ユーザー emqk5RBeemqk5RBe
提出日時 2019-09-25 09:46:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 11,888 KB
実行使用メモリ 10,092 KB
最終ジャッジ日時 2023-10-21 18:14:20
合計ジャッジ時間 1,387 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,092 KB
testcase_01 AC 32 ms
10,092 KB
testcase_02 AC 31 ms
10,092 KB
testcase_03 AC 30 ms
10,092 KB
testcase_04 AC 30 ms
10,092 KB
testcase_05 AC 30 ms
10,092 KB
testcase_06 AC 31 ms
10,092 KB
testcase_07 AC 28 ms
10,092 KB
testcase_08 AC 31 ms
10,092 KB
testcase_09 AC 31 ms
10,092 KB
testcase_10 AC 30 ms
10,092 KB
testcase_11 AC 30 ms
10,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

f1,num=map(int,input().split())
fL=[f1]
for x in range(num-1):
    fL.append(int(input()))
B={a:i+1 for (i,a) in enumerate(sorted(fL,reverse=True))}
r=str(B[f1])
if r[-1:]=='1':
    print(r+"st")
elif r[-1:]=='2':
    print(r+"nd")
elif r[-1:]=='3':
    print(r+"rd")
else:
    print(r+"th")
0