結果
問題 | No.185 和風 |
ユーザー | mondo |
提出日時 | 2019-07-30 10:41:16 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 455 bytes |
コンパイル時間 | 1,495 ms |
コンパイル使用メモリ | 32,276 KB |
実行使用メモリ | 32,784 KB |
最終ジャッジ日時 | 2024-07-03 22:35:42 |
合計ジャッジ時間 | 2,393 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $count= trim(fgets(STDIN)); $number = array(); $answer = 0; for ($i = 0; $i < $count; $i++) { $number = explode(" ", trim(fgets(STDIN))); $answer = $number[1] - $number[0]; $array[] = $answer; } // print_r($array); $OK = 0; $NG = 0; foreach ($array as $key => $value){ if ($array[$key] == $array[$key+1]) { $OK ++; } else { $NG ++; } } if ($OK == $count-1) { echo $array[0]; } else { echo "-1"; }