結果
問題 | No.477 MVP |
ユーザー | happy-beans |
提出日時 | 2017-03-14 06:40:12 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 133 bytes |
コンパイル時間 | 2,433 ms |
コンパイル使用メモリ | 31,828 KB |
実行使用メモリ | 32,400 KB |
最終ジャッジ日時 | 2024-06-30 00:42:59 |
合計ジャッジ時間 | 1,461 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
32,400 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 35 ms
32,212 KB |
testcase_07 | AC | 36 ms
32,148 KB |
testcase_08 | AC | 36 ms
32,400 KB |
testcase_09 | AC | 34 ms
32,396 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php // No.477 $args = explode(" ", trim(fgets(STDIN))); $ans = floor($args[0] / ($args[1] + 1)) + 1; echo $ans.PHP_EOL; return;