結果
問題 | No.185 和風 |
ユーザー | mondo |
提出日時 | 2019-07-30 10:33:40 |
言語 | PHP (843.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 396 bytes |
コンパイル時間 | 79 ms |
コンパイル使用メモリ | 30,836 KB |
実行使用メモリ | 31,332 KB |
最終ジャッジ日時 | 2024-07-02 15:37:34 |
合計ジャッジ時間 | 826 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); foreach ($array as $key => $value){ if ($array[$key] == $array[$key - 1]) { $ans = $array[0]; } else { $ans = "-1"; } } echo $ans;