結果

問題 No.451 575
ユーザー papinianuspapinianus
提出日時 2016-12-02 01:03:02
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 810 bytes
コンパイル時間 2,973 ms
コンパイル使用メモリ 30,928 KB
実行使用メモリ 44,164 KB
最終ジャッジ日時 2024-12-16 09:05:30
合計ジャッジ時間 7,659 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,084 KB
testcase_01 AC 39 ms
31,408 KB
testcase_02 AC 43 ms
31,248 KB
testcase_03 AC 40 ms
31,100 KB
testcase_04 AC 39 ms
31,232 KB
testcase_05 AC 41 ms
31,756 KB
testcase_06 AC 47 ms
34,444 KB
testcase_07 AC 87 ms
43,912 KB
testcase_08 AC 41 ms
31,548 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
31,320 KB
testcase_15 AC 42 ms
31,372 KB
testcase_16 AC 44 ms
33,232 KB
testcase_17 AC 78 ms
44,032 KB
testcase_18 AC 80 ms
44,164 KB
testcase_19 AC 67 ms
40,596 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 41 ms
31,428 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 45 ms
31,368 KB
testcase_26 AC 38 ms
31,456 KB
testcase_27 AC 37 ms
31,308 KB
testcase_28 AC 39 ms
31,488 KB
testcase_29 AC 44 ms
32,596 KB
testcase_30 AC 81 ms
44,036 KB
testcase_31 AC 38 ms
31,376 KB
testcase_32 AC 48 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