結果

問題 No.135 とりあえず1次元の問題
ユーザー takutakutakutaku
提出日時 2021-06-05 23:01:11
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 30,436 KB
実行使用メモリ 40,704 KB
最終ジャッジ日時 2024-11-21 22:34:29
合計ジャッジ時間 4,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
40,336 KB
testcase_01 AC 40 ms
30,816 KB
testcase_02 WA -
testcase_03 AC 39 ms
31,232 KB
testcase_04 WA -
testcase_05 AC 40 ms
31,104 KB
testcase_06 AC 39 ms
31,112 KB
testcase_07 AC 38 ms
31,000 KB
testcase_08 AC 39 ms
30,740 KB
testcase_09 WA -
testcase_10 AC 41 ms
31,052 KB
testcase_11 AC 40 ms
30,844 KB
testcase_12 AC 41 ms
30,792 KB
testcase_13 AC 39 ms
31,032 KB
testcase_14 AC 41 ms
30,716 KB
testcase_15 AC 41 ms
30,844 KB
testcase_16 WA -
testcase_17 AC 43 ms
30,592 KB
testcase_18 AC 41 ms
31,004 KB
testcase_19 AC 41 ms
30,800 KB
testcase_20 AC 40 ms
30,840 KB
testcase_21 WA -
testcase_22 AC 167 ms
40,340 KB
evil01.txt AC 164 ms
40,340 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $N = trim(fgets(STDIN));
    $n = explode(' ', trim(fgets(STDIN)));
    sort($n);
    $result = 0;
    
    for($i = 0; $i < $N - 1; $i++) {
        
        $distance = $n[$i + 1] - $n[$i];
        
        if($result ==0){
            $result = $distance;
        
        } elseif($distance < $result) {
            $result = $distance;
            
        }
    }
    
    echo $result.PHP_EOL;
    
?>
0