結果

問題 No.564 背の順
ユーザー glarandglarand
提出日時 2024-09-30 17:12:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-09-30 17:12:08
合計ジャッジ時間 1,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 WA -
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 44 ms
52,352 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 43 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
MyPC = os.path.basename(__file__) != "Main.py"
if MyPC:
  from icecream import ic
  ic.disable()
else:
  def ic(*args):
    return None
ic.enable() if MyPC else None
def main():
  h, n = map(int, input().split())
  lh = []
  for i in range(n-1):
    lh.append(int(input()))

  lh.append(h)
  lh2 = sorted(lh, reverse=True)
  if h == lh2[0]:
    print("1st")
  elif h == lh2[1]:
    print("2nd")
  elif h == lh2[2]:
    print("3rd")
  else:
    rank= lh2.index(h)
    print(f"{rank+1}th")



if __name__ == "__main__":
  main()
0