結果

問題 No.750 Frac #1
ユーザー papinianuspapinianus
提出日時 2021-06-19 23:36:32
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 1,488 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 30,672 KB
実行使用メモリ 31,264 KB
最終ジャッジ日時 2024-06-22 22:21:10
合計ジャッジ時間 2,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,264 KB
testcase_01 AC 41 ms
30,912 KB
testcase_02 AC 41 ms
31,172 KB
testcase_03 AC 42 ms
30,820 KB
testcase_04 AC 42 ms
30,860 KB
testcase_05 AC 41 ms
30,824 KB
testcase_06 AC 41 ms
30,820 KB
testcase_07 AC 40 ms
31,076 KB
testcase_08 AC 41 ms
31,008 KB
testcase_09 AC 42 ms
30,960 KB
testcase_10 AC 41 ms
30,848 KB
testcase_11 AC 41 ms
30,800 KB
testcase_12 AC 41 ms
30,808 KB
testcase_13 AC 41 ms
31,060 KB
testcase_14 AC 41 ms
31,100 KB
testcase_15 AC 42 ms
31,004 KB
testcase_16 AC 42 ms
30,788 KB
testcase_17 AC 41 ms
30,884 KB
testcase_18 AC 41 ms
30,920 KB
testcase_19 AC 41 ms
30,924 KB
testcase_20 AC 42 ms
30,964 KB
testcase_21 AC 41 ms
30,856 KB
testcase_22 AC 41 ms
30,980 KB
testcase_23 AC 42 ms
31,072 KB
testcase_24 AC 42 ms
31,036 KB
testcase_25 AC 42 ms
31,168 KB
testcase_26 AC 41 ms
30,972 KB
testcase_27 AC 42 ms
31,044 KB
testcase_28 AC 42 ms
31,084 KB
testcase_29 AC 42 ms
30,856 KB
testcase_30 AC 41 ms
31,224 KB
testcase_31 AC 41 ms
31,128 KB
testcase_32 AC 41 ms
31,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
declare(strict_types=1);

$n = UtilIO::getInt();
$list = [];
while($n > 0) {
    $list[] = UtilIO::getString();
    $n--;
}
usort($list, function(string $a, string $b):int {
    [$aa, $ab] = array_map('intval', explode(" ", $a));
    [$ba, $bb] = array_map('intval', explode(" ", $b));
    return ($aa/$ab > $ba/$bb) ? -1 : (($aa/$ab < $ba/$bb) ? 1 : 0);
});
UtilIO::echo($list);

class UtilIO {
    protected static string $n = PHP_EOL;
    protected function __construct() { }
    public static function getString():string {
        return trim(fgets(STDIN));
    }
    public static function getInt():int {
        return intval(static::getString());
    }
    public static function getStringArray($separator = " "):array {
        return explode($separator, static::getString());
    }
    public static function getIntArray($separator = " "):array {
        return array_map('intval', static::getStringArray($separator));
    }
    public static function echo(mixed $value):void {
        if(is_string($value)) {
            echo static::toLine($value);
            return;
        }
        if(is_numeric($value)) {
            echo static::toLine(strval($value));
            return;
        }
        if(is_array($value)) {
            foreach($value as $v) {
                static::echo($v);
            }
            return;
        }
        var_export($value);
    }
    public static function toLine(string $str):string {
        return trim($str).static::$n;
    }
}
0