結果

問題 No.564 背の順
ユーザー dyechidyechi
提出日時 2019-04-01 18:19:41
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 533 bytes
コンパイル時間 3,159 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 32,788 KB
最終ジャッジ日時 2024-05-04 08:55:27
合計ジャッジ時間 3,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
32,404 KB
testcase_01 AC 34 ms
32,660 KB
testcase_02 AC 34 ms
32,528 KB
testcase_03 AC 35 ms
32,528 KB
testcase_04 AC 34 ms
32,656 KB
testcase_05 WA -
testcase_06 AC 34 ms
32,532 KB
testcase_07 AC 34 ms
32,400 KB
testcase_08 AC 35 ms
32,400 KB
testcase_09 AC 34 ms
32,400 KB
testcase_10 WA -
testcase_11 AC 34 ms
32,404 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 % 10 == 1) {
    echo $number."st".PHP_EOL;
} elseif ($number % 10 == 2) {
    echo $number."nd".PHP_EOL;
} elseif ($number % 10 == 3) {
    echo $number."rd".PHP_EOL;
} else {
    echo $number."th".PHP_EOL;
}
0