結果

問題 No.451 575
ユーザー papinianuspapinianus
提出日時 2016-12-02 00:28:48
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 2,898 ms
コンパイル使用メモリ 30,412 KB
実行使用メモリ 34,064 KB
最終ジャッジ日時 2024-05-09 16:59:58
合計ジャッジ時間 9,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
30,836 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 33 ms
31,132 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 35 ms
31,024 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 68 ms
33,936 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 34 ms
31,168 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 35 ms
31,272 KB
testcase_32 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
for($m = 1; $m < $n; $m++)
{
    $prev = $m;
    $str = ($n+1).PHP_EOL;
    $str .= $prev.PHP_EOL;
    for($i = 1; $i <= $n; $i++)
    {
        $num = trim(fgets(STDIN));
        if($i % 2)
        {
            $prev = $num - $prev;
        }
        else
        {
            $prev = $prev - $num;
        }
        if($prev < 1) { $str = "";break;}
        $str .= $prev.PHP_EOL;
    }
    if($str === "") {continue;}
    break;
}
if($str === "")
{
    echo "-1\n";
}
else
{
    echo $str;
}

0