結果

問題 No.63 ポッキーゲーム
ユーザー kagikakko_karikagikakko_kari
提出日時 2016-06-19 19:58:28
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 169 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 31,892 KB
実行使用メモリ 31,092 KB
最終ジャッジ日時 2024-06-06 13:21:04
合計ジャッジ時間 1,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
30,800 KB
testcase_01 AC 35 ms
30,988 KB
testcase_02 AC 33 ms
30,884 KB
testcase_03 AC 35 ms
30,760 KB
testcase_04 AC 33 ms
30,704 KB
testcase_05 AC 36 ms
30,628 KB
testcase_06 AC 34 ms
30,696 KB
testcase_07 AC 38 ms
30,800 KB
testcase_08 AC 35 ms
30,700 KB
testcase_09 AC 36 ms
30,828 KB
testcase_10 AC 36 ms
30,528 KB
testcase_11 AC 35 ms
30,808 KB
testcase_12 AC 34 ms
31,032 KB
testcase_13 AC 36 ms
30,780 KB
testcase_14 AC 36 ms
30,596 KB
testcase_15 AC 38 ms
30,952 KB
testcase_16 AC 35 ms
30,740 KB
testcase_17 AC 35 ms
30,928 KB
testcase_18 AC 39 ms
30,804 KB
testcase_19 AC 37 ms
30,688 KB
testcase_20 AC 35 ms
31,092 KB
testcase_21 AC 34 ms
30,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($l,$k) = explode(" ",trim(fgets(STDIN)));
$n = $l / ($k * 2);
if($n == 1){
echo 0;
}elseif($n == floor($n)){
echo $k * ($n - 1);
}else{
echo $k * floor($n);
}
0