結果

問題 No.564 背の順
ユーザー 6soukiti296soukiti29
提出日時 2017-09-08 22:31:32
言語 Nim
(2.0.2)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 3,058 ms
コンパイル使用メモリ 69,052 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-12 15:08:42
合計ジャッジ時間 3,779 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sequtils,strutils,algorithm
var
    H,N : int
    A = newSeq[int](0)
    ans : string
    cnt : int
(H, N) = stdin.readline.split.map(parseInt)
for n in 0..<(N - 1):
    A.add(stdin.readline.parseInt)
A.sort(system.cmp)
A.reverse()
A.add(0)
for i,a in A:
    if a < H:
        cnt = i + 1
        ans = $cnt
        break
if ans[^1] == '1':
    ans &= "st"
elif ans[^1] == '2':
    ans &= "nd"
elif ans[^1] == '3':
    ans &= "rd"
else:
    ans &= "th"

echo ans
0