結果

問題 No.432 占い(Easy)
ユーザー papinianuspapinianus
提出日時 2016-10-17 12:41:05
言語 PHP
(8.3.4)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 2,384 ms
コンパイル使用メモリ 30,048 KB
実行使用メモリ 40,204 KB
最終ジャッジ日時 2024-11-22 13:08:24
合計ジャッジ時間 3,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,576 KB
testcase_01 AC 40 ms
30,728 KB
testcase_02 AC 40 ms
30,820 KB
testcase_03 AC 38 ms
30,440 KB
testcase_04 AC 40 ms
30,668 KB
testcase_05 AC 39 ms
30,704 KB
testcase_06 AC 38 ms
30,592 KB
testcase_07 AC 40 ms
30,776 KB
testcase_08 AC 39 ms
30,628 KB
testcase_09 AC 41 ms
30,768 KB
testcase_10 AC 38 ms
30,700 KB
testcase_11 AC 43 ms
30,400 KB
testcase_12 AC 100 ms
40,148 KB
testcase_13 AC 102 ms
40,204 KB
testcase_14 AC 46 ms
30,488 KB
testcase_15 AC 40 ms
30,368 KB
testcase_16 AC 39 ms
30,588 KB
testcase_17 AC 81 ms
40,076 KB
testcase_18 AC 70 ms
33,552 KB
testcase_19 AC 60 ms
32,140 KB
testcase_20 AC 49 ms
30,860 KB
testcase_21 AC 50 ms
31,628 KB
testcase_22 AC 40 ms
30,704 KB
testcase_23 AC 41 ms
30,592 KB
testcase_24 AC 41 ms
30,476 KB
testcase_25 AC 42 ms
30,612 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$t = trim(fgets(STDIN));
for(;$t;$t--)
{
    $nums = str_split(trim(fgets(STDIN)));
    $size = count($nums);
    $val = getTreedSum($nums, $size);
    echo $val.PHP_EOL;
}

function getTreedSum($array, $size)
{
    if($size === 1)
    {
        return $array[0];
    }
    else
    {
        $new = [];
        for($i = 1; $i < $size; $i++)
        {
            $new[$i-1] = singleDigit($array[$i-1], $array[$i]);
        }
        return getTreedSum($new, $size - 1);
    }
}
function singleDigit($a, $b)
{
    $sum = $a + $b;
    while($sum > 9)
    {
        $sum = $sum % 10 + floor($sum / 10);
    }
    return $sum;
}
0