結果

問題 No.63 ポッキーゲーム
ユーザー papinianuspapinianus
提出日時 2016-06-03 10:08:35
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 132 bytes
コンパイル時間 2,568 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 31,464 KB
最終ジャッジ日時 2024-06-06 13:19:40
合計ジャッジ時間 2,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,200 KB
testcase_01 AC 33 ms
31,080 KB
testcase_02 AC 33 ms
31,380 KB
testcase_03 AC 33 ms
31,008 KB
testcase_04 AC 34 ms
31,220 KB
testcase_05 AC 34 ms
31,060 KB
testcase_06 AC 34 ms
31,196 KB
testcase_07 AC 34 ms
31,220 KB
testcase_08 AC 33 ms
31,244 KB
testcase_09 AC 33 ms
31,100 KB
testcase_10 AC 33 ms
31,064 KB
testcase_11 AC 35 ms
31,068 KB
testcase_12 AC 34 ms
30,944 KB
testcase_13 AC 35 ms
31,344 KB
testcase_14 AC 34 ms
31,204 KB
testcase_15 AC 36 ms
31,364 KB
testcase_16 AC 36 ms
31,464 KB
testcase_17 AC 34 ms
31,216 KB
testcase_18 AC 33 ms
31,404 KB
testcase_19 AC 33 ms
31,012 KB
testcase_20 AC 35 ms
31,368 KB
testcase_21 AC 33 ms
31,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($len, $stroke) = explode(' ',trim(fgets(STDIN)));
$times  = floor(($len-1) / (2*$stroke));
echo ($times*$stroke).PHP_EOL;
0