結果

問題 No.63 ポッキーゲーム
ユーザー sorchsorch
提出日時 2020-07-26 16:35:10
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 30,512 KB
実行使用メモリ 31,096 KB
最終ジャッジ日時 2024-06-28 17:26:22
合計ジャッジ時間 2,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,608 KB
testcase_01 AC 42 ms
30,820 KB
testcase_02 AC 41 ms
30,532 KB
testcase_03 AC 43 ms
30,984 KB
testcase_04 WA -
testcase_05 AC 41 ms
30,784 KB
testcase_06 AC 42 ms
30,760 KB
testcase_07 AC 42 ms
30,532 KB
testcase_08 AC 42 ms
30,644 KB
testcase_09 AC 42 ms
30,544 KB
testcase_10 AC 41 ms
30,552 KB
testcase_11 AC 41 ms
30,440 KB
testcase_12 AC 42 ms
30,888 KB
testcase_13 WA -
testcase_14 AC 43 ms
30,836 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 42 ms
31,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

/**
 * No.63 ポッキーゲーム
 * 
 * @see https://yukicoder.me/problems/134
 */

 list($pockeyLengh, $eatLength) = explode(" ", trim(fgets(STDIN)));

 $count = floor($pockeyLengh / ($eatLength * 2));
 echo $eatLength * $count . "\n";
0