結果

問題 No.63 ポッキーゲーム
ユーザー mahnamahna
提出日時 2020-10-13 17:40:10
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 11,924 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2023-09-28 00:12:18
合計ジャッジ時間 8,087 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
12,112 KB
testcase_01 AC 6 ms
12,160 KB
testcase_02 AC 6 ms
12,216 KB
testcase_03 WA -
testcase_04 AC 6 ms
12,196 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