結果

問題 No.63 ポッキーゲーム
ユーザー mahnamahna
提出日時 2020-10-13 17:40:10
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 2,760 ms
コンパイル使用メモリ 31,632 KB
実行使用メモリ 38,960 KB
最終ジャッジ日時 2024-07-20 18:37:03
合計ジャッジ時間 10,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
32,272 KB
testcase_01 AC 47 ms
32,400 KB
testcase_02 AC 48 ms
32,272 KB
testcase_03 WA -
testcase_04 AC 47 ms
32,272 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// Your code here!

    fscanf(STDIN,"%d %d",$l,$k);
    
    $yuu = 0;
    while ($l - $k * 2 > 0) {
        $yuu++;
        $l -= $k * 2;
    }
    
    echo $yuu;


?>
0