結果

問題 No.185 和風
ユーザー mondomondo
提出日時 2019-07-30 10:24:58
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 30,816 KB
実行使用メモリ 31,156 KB
最終ジャッジ日時 2024-07-02 15:37:21
合計ジャッジ時間 777 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
30,816 KB
testcase_02 AC 35 ms
30,880 KB
testcase_03 AC 34 ms
30,908 KB
testcase_04 AC 35 ms
30,896 KB
testcase_05 AC 35 ms
30,800 KB
testcase_06 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$count= trim(fgets(STDIN));
$number = array();
$answer = 0;
for ($i = 0; $i < $count; $i++) {
     $number = explode(" ", trim(fgets(STDIN)));
     list($number1, $number2) = $number;
     $answer = $number2 - $number1;
     $array[] = $answer;
}
if (count(array_unique($array)) == 0) {
    echo $array[0];
} else {
    echo "-1";
}


0