結果

問題 No.564 背の順
ユーザー dyechidyechi
提出日時 2019-04-01 18:13:55
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 31,000 KB
実行使用メモリ 31,200 KB
最終ジャッジ日時 2024-05-04 04:36:26
合計ジャッジ時間 1,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,168 KB
testcase_01 AC 33 ms
31,000 KB
testcase_02 AC 37 ms
30,932 KB
testcase_03 WA -
testcase_04 AC 36 ms
30,744 KB
testcase_05 WA -
testcase_06 AC 34 ms
30,808 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 32 ms
30,720 KB
testcase_10 WA -
testcase_11 AC 33 ms
30,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
while ($line = fgets(STDIN)) {
	$array[] = trim($line);
}
$split = array_splice($array, 0, 1);
$line = explode(" ", $split[0]);

rsort($array);

for ($i=0; $i<$line[1]-1; $i++) {
    if ($array[$i] < $line[0]) {
        $number = $i + 1;
        break;
    }
}
if ($number == 0) {
    $number = $i + 1;
}

if ($number == 1) {
    echo $number."st".PHP_EOL;
} elseif ($number == 2) {
    echo $number."nd".PHP_EOL;
} elseif ($number == 3) {
    echo $number."rd".PHP_EOL;
} else {
    echo $number."th".PHP_EOL;
}
0