結果

問題 No.451 575
ユーザー papinianuspapinianus
提出日時 2016-12-02 00:19:02
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 4,743 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 33,936 KB
最終ジャッジ日時 2024-05-09 16:55:07
合計ジャッジ時間 8,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,028 KB
testcase_01 AC 41 ms
31,428 KB
testcase_02 AC 43 ms
31,392 KB
testcase_03 AC 42 ms
31,288 KB
testcase_04 AC 43 ms
31,284 KB
testcase_05 AC 42 ms
31,480 KB
testcase_06 AC 41 ms
31,448 KB
testcase_07 AC 42 ms
31,260 KB
testcase_08 AC 45 ms
31,276 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 78 ms
33,936 KB
testcase_14 AC 42 ms
31,324 KB
testcase_15 AC 41 ms
31,464 KB
testcase_16 AC 42 ms
31,028 KB
testcase_17 AC 43 ms
31,308 KB
testcase_18 AC 41 ms
31,244 KB
testcase_19 AC 41 ms
31,340 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 43 ms
30,996 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 41 ms
31,320 KB
testcase_26 AC 42 ms
31,496 KB
testcase_27 AC 45 ms
31,284 KB
testcase_28 AC 41 ms
31,476 KB
testcase_29 AC 41 ms
31,224 KB
testcase_30 AC 42 ms
31,524 KB
testcase_31 AC 42 ms
31,312 KB
testcase_32 AC 41 ms
31,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$prev = 1;
$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) { echo "-1\n";exit;}
    $str .= $prev.PHP_EOL;
}
echo $str;
0