結果
問題 | No.185 和風 |
ユーザー | takeya_okino |
提出日時 | 2017-07-14 16:50:50 |
言語 | PHP (8.3.4) |
結果 |
RE
|
実行時間 | - |
コード長 | 343 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 32,276 KB |
実行使用メモリ | 32,660 KB |
最終ジャッジ日時 | 2024-10-07 21:44:03 |
合計ジャッジ時間 | 1,024 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $N = trim(fgets(STDIN)); $ans = 0; $flg = false; for($i = 0; $i < $N; $i++) { $array = explode(" ", trim(fgets(STDIN))); $x = $array[0]; $y = $array[1]; if($i == 0) { $ans = $y - $x; } else { if($ans != ($y - $x)) { $flg = true; break; } } } if(flg) $ans = -1; if($ans <= 0) $ans = -1; print($ans); ?>