結果

問題 No.78 クジ付きアイスバー
ユーザー papinianuspapinianus
提出日時 2016-08-30 13:09:59
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 327 bytes
コンパイル時間 3,443 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 64,420 KB
最終ジャッジ日時 2024-11-14 07:42:34
合計ジャッジ時間 142,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
39,092 KB
testcase_01 AC 41 ms
39,348 KB
testcase_02 AC 41 ms
64,292 KB
testcase_03 AC 41 ms
39,224 KB
testcase_04 AC 43 ms
64,040 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 41 ms
39,220 KB
testcase_24 AC 41 ms
64,420 KB
testcase_25 AC 41 ms
39,480 KB
testcase_26 AC 41 ms
39,220 KB
testcase_27 AC 40 ms
32,656 KB
testcase_28 AC 40 ms
32,276 KB
testcase_29 AC 40 ms
32,400 KB
testcase_30 AC 41 ms
32,148 KB
testcase_31 AC 41 ms
32,144 KB
testcase_32 AC 43 ms
32,144 KB
testcase_33 AC 136 ms
32,144 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($null, $target) = explode(" ", trim(fgets(STDIN)));
$box = str_split(trim(fgets(STDIN)));
$bought = 0;
$win = 0;
$index = 0;
while($target) {
    if($win) {
        $win--;
    } else {
        $bought++;
    }
    $target--;
    $win += $box[$index];
    $index++;
    $index %= count($box);
}
echo $bought.PHP_EOL;
0