結果

問題 No.451 575
ユーザー papinianuspapinianus
提出日時 2016-12-02 01:03:02
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 810 bytes
コンパイル時間 3,482 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 43,912 KB
最終ジャッジ日時 2024-05-09 17:54:20
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,072 KB
testcase_01 AC 33 ms
30,968 KB
testcase_02 AC 33 ms
30,976 KB
testcase_03 AC 36 ms
31,068 KB
testcase_04 AC 34 ms
31,236 KB
testcase_05 AC 36 ms
31,500 KB
testcase_06 AC 45 ms
34,060 KB
testcase_07 AC 80 ms
43,912 KB
testcase_08 AC 34 ms
30,840 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 34 ms
31,412 KB
testcase_15 AC 34 ms
31,376 KB
testcase_16 AC 39 ms
33,040 KB
testcase_17 AC 77 ms
43,784 KB
testcase_18 AC 77 ms
43,776 KB
testcase_19 AC 65 ms
40,340 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 35 ms
30,836 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 36 ms
31,056 KB
testcase_26 AC 37 ms
31,328 KB
testcase_27 AC 35 ms
31,084 KB
testcase_28 AC 35 ms
31,208 KB
testcase_29 AC 38 ms
32,524 KB
testcase_30 AC 76 ms
43,656 KB
testcase_31 AC 35 ms
31,200 KB
testcase_32 AC 40 ms
32,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
for($j = 0; $j < $n; $j ++)
{
    $num = trim(fgets(STDIN));
    $input[] = $num;
    if(($j % 2) == 0)
    {
        $evens[] = $num;
    }
}
$min = min($evens);
if($min < 2) {
    echo "-1\n";
    exit;
}
$minidx = array_search($min, $evens) * 2;
$output[$minidx] = 1;
for($i = $minidx - 1; $i > -1; $i--)
{
    if($i % 2)
    {
        $output[$i] = $input[$i] + $output[$i+1];
    }
    else
    {
        $output[$i] = $input[$i] - $output[$i+1];
    }
}
for($i = $minidx; $i < $n; $i++)
{
    if($i % 2)
    {
        $output[$i+1] = $output[$i] - $input[$i];
    }
    else
    {
        $output[$i+1] = $input[$i] - $output[$i];
    }
}
if(min($output) < 1)
{
    echo "-1\n";
    exit;
}
echo ($n+1).PHP_EOL;
ksort($output);
echo implode(PHP_EOL, $output);
echo PHP_EOL;
0