結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
32,404 KB
testcase_01 AC 36 ms
32,400 KB
testcase_02 AC 36 ms
32,400 KB
testcase_03 WA -
testcase_04 AC 35 ms
32,276 KB
testcase_05 WA -
testcase_06 AC 36 ms
32,148 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
32,212 KB
testcase_10 WA -
testcase_11 AC 35 ms
32,272 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