結果

問題 No.415 ぴょん
ユーザー papinianuspapinianus
提出日時 2016-09-05 12:25:18
言語 PHP
(8.3.4)
結果
RE  
実行時間 -
コード長 306 bytes
コンパイル時間 3,381 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 819,644 KB
最終ジャッジ日時 2024-11-15 20:24:34
合計ジャッジ時間 11,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
39,220 KB
testcase_01 AC 40 ms
32,272 KB
testcase_02 AC 39 ms
32,272 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 TLE -
testcase_07 AC 105 ms
36,240 KB
testcase_08 RE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 39 ms
32,404 KB
testcase_12 AC 41 ms
32,272 KB
testcase_13 AC 41 ms
32,276 KB
testcase_14 AC 40 ms
32,400 KB
testcase_15 AC 40 ms
32,528 KB
testcase_16 AC 42 ms
32,400 KB
testcase_17 AC 41 ms
32,400 KB
testcase_18 AC 40 ms
32,276 KB
testcase_19 AC 41 ms
32,400 KB
testcase_20 AC 40 ms
32,400 KB
testcase_21 RE -
testcase_22 AC 41 ms
32,216 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($ringCnt, $step) = explode(" ", trim(fgets(STDIN)));
$ring = array_fill(0, $ringCnt, 1);
$action = 0;
$cur = 0;
$ring[$cur] = 0;
$next = ($cur+$step)%$ringCnt;
while($ring[$next]) {
    $ring[$cur] = 0;
    $cur = $next;
    $next = ($cur+$step)%$ringCnt;
    $action++;
}

echo $action.PHP_EOL;
0