結果

問題 No.451 575
ユーザー papinianuspapinianus
提出日時 2016-12-02 00:19:02
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 1,462 ms
コンパイル使用メモリ 30,980 KB
実行使用メモリ 33,676 KB
最終ジャッジ日時 2024-12-16 07:36:41
合計ジャッジ時間 7,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,024 KB
testcase_01 AC 43 ms
30,640 KB
testcase_02 AC 44 ms
31,040 KB
testcase_03 AC 42 ms
30,736 KB
testcase_04 AC 43 ms
30,716 KB
testcase_05 AC 42 ms
30,920 KB
testcase_06 AC 43 ms
30,980 KB
testcase_07 AC 43 ms
30,616 KB
testcase_08 AC 43 ms
30,928 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 84 ms
33,676 KB
testcase_14 AC 46 ms
30,916 KB
testcase_15 AC 42 ms
30,896 KB
testcase_16 AC 44 ms
30,904 KB
testcase_17 AC 43 ms
30,612 KB
testcase_18 AC 43 ms
30,808 KB
testcase_19 AC 43 ms
30,884 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 42 ms
30,632 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 42 ms
30,988 KB
testcase_26 AC 43 ms
30,992 KB
testcase_27 AC 42 ms
30,716 KB
testcase_28 AC 42 ms
31,196 KB
testcase_29 AC 44 ms
30,580 KB
testcase_30 AC 42 ms
31,060 KB
testcase_31 AC 42 ms
30,880 KB
testcase_32 AC 42 ms
30,960 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