結果

問題 No.564 背の順
ユーザー tazakkytazakky
提出日時 2017-09-08 22:41:55
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 4,096 ms
コンパイル使用メモリ 30,312 KB
実行使用メモリ 31,444 KB
最終ジャッジ日時 2024-11-07 12:10:53
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,252 KB
testcase_01 AC 40 ms
31,124 KB
testcase_02 AC 41 ms
30,988 KB
testcase_03 AC 40 ms
31,104 KB
testcase_04 AC 40 ms
31,436 KB
testcase_05 AC 41 ms
30,980 KB
testcase_06 AC 39 ms
31,152 KB
testcase_07 AC 41 ms
31,072 KB
testcase_08 AC 40 ms
31,324 KB
testcase_09 AC 42 ms
31,444 KB
testcase_10 AC 41 ms
31,036 KB
testcase_11 AC 41 ms
31,268 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    // 1行目には,なま君の身長HH(1≦H≦10001≦H≦1000)とクラスの人数NN(2≦N≦1002≦N≦100)
    list($nama, $n) = explode(" ", trim(fgets(STDIN)));
    for($i = 0; $i < $n-1; $i++){
        $talls[] = trim(fgets(STDIN));
    }
    rsort($talls);
    $no = 1;
    for($i = 0; $i < $n-1; $i++){
        if($talls[$i] > $nama){
            $no++;
        }else{
            break;
        }
    }
    
    if(preg_match('/1$/', $no )){
        echo $no."st\n";
    }elseif(preg_match('/2$/', $no )){
        echo $no."nd\n";
    }elseif(preg_match('/3$/', $no )){
        echo $no."rd\n";
    }else{
        echo $no."th\n";
    }
   
?>
0