結果

問題 No.63 ポッキーゲーム
ユーザー ayaaya
提出日時 2019-07-25 14:38:36
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 1,177 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 31,380 KB
最終ジャッジ日時 2024-07-02 06:01:49
合計ジャッジ時間 1,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,212 KB
testcase_01 AC 41 ms
31,096 KB
testcase_02 AC 40 ms
31,000 KB
testcase_03 AC 42 ms
31,380 KB
testcase_04 AC 41 ms
31,220 KB
testcase_05 AC 40 ms
31,212 KB
testcase_06 AC 41 ms
31,208 KB
testcase_07 AC 42 ms
31,020 KB
testcase_08 AC 41 ms
31,124 KB
testcase_09 AC 40 ms
31,332 KB
testcase_10 AC 41 ms
31,248 KB
testcase_11 AC 41 ms
31,200 KB
testcase_12 AC 40 ms
30,932 KB
testcase_13 AC 40 ms
31,124 KB
testcase_14 AC 41 ms
30,932 KB
testcase_15 AC 41 ms
30,916 KB
testcase_16 AC 41 ms
31,112 KB
testcase_17 AC 41 ms
31,124 KB
testcase_18 AC 41 ms
31,276 KB
testcase_19 AC 41 ms
31,368 KB
testcase_20 AC 40 ms
31,020 KB
testcase_21 AC 39 ms
31,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/*ハルカちゃんとユウちゃんはとっても仲良しなので、2人でポッキーゲームをすることにしました。

長さが L(mm) のポッキーを2人はそれぞれ両端から中央に向かって齧っていきます。
2人とも毎回 K(mm) ずつ同じタイミングでポッキーを齧ります。
ユウちゃんは恥ずかしがり屋さんなので、
次のタイミングで2人ともポッキーを齧ろうとしたら唇が触れてしまうと分かった時点で齧り進めるのを止めて、
残りは全部ハルカちゃんが食べてしまいます。

このとき、ユウちゃんが食べるポッキーの長さは何mmか?

入力
L K
入力 L,K はそれぞれ整数値で与えられる。
1≤L≤109 はゲームに用いるポッキーの長さを表す。
1≤K≤50 はお互いが1回に齧るポッキーの長さを表す。
残りのポッキーの長さが0(もしくはそれ以下)で唇が触れるものとする。
*/

$LK =explode(" ",trim(fgets(STDIN)));

if(is_int($LK[0]/($LK[1]*2))){
  echo (floor($LK[0]/($LK[1]*2))-1)*$LK[1];
}else{
  echo floor($LK[0]/($LK[1]*2))*$LK[1];
}
?>
0