結果

問題 No.63 ポッキーゲーム
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-13 00:02:39
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 109 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-04-16 17:54:46
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,336 KB
testcase_01 AC 40 ms
31,320 KB
testcase_02 AC 39 ms
31,068 KB
testcase_03 AC 41 ms
31,348 KB
testcase_04 WA -
testcase_05 AC 42 ms
31,264 KB
testcase_06 AC 40 ms
31,052 KB
testcase_07 AC 41 ms
31,124 KB
testcase_08 AC 41 ms
31,444 KB
testcase_09 AC 39 ms
31,128 KB
testcase_10 AC 41 ms
31,364 KB
testcase_11 AC 40 ms
31,336 KB
testcase_12 AC 39 ms
31,412 KB
testcase_13 WA -
testcase_14 AC 40 ms
31,512 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 40 ms
31,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$args=explode(" ", trim(fgets(STDIN)));
$L=$args[0];
$K=$args[1];
$t=intdiv($L, 2*$K);
print($t*$K);
?>
0