結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
39,088 KB
testcase_01 AC 42 ms
64,672 KB
testcase_02 AC 41 ms
64,676 KB
testcase_03 AC 41 ms
64,672 KB
testcase_04 AC 41 ms
39,476 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
64,804 KB
testcase_24 AC 41 ms
32,272 KB
testcase_25 AC 41 ms
32,276 KB
testcase_26 AC 41 ms
32,212 KB
testcase_27 AC 41 ms
32,400 KB
testcase_28 AC 40 ms
32,404 KB
testcase_29 AC 41 ms
32,400 KB
testcase_30 AC 40 ms
32,268 KB
testcase_31 AC 41 ms
32,144 KB
testcase_32 AC 47 ms
32,404 KB
testcase_33 AC 427 ms
32,404 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)));
$target = gmp_init($target);
$box = str_split(trim(fgets(STDIN)));
$bought = 0;
$win = 0;
$index = 0;
while(gmp_cmp($target, 0) != 0) {
    if($win) {
        $win--;
    } else {
        $bought++;
    }
    $target = gmp_add($target, -1);
    $win += $box[$index];
    $index++;
    $index %= count($box);
}
echo $bought.PHP_EOL;
0