結果
問題 | No.857 素振り |
ユーザー | seaside0002 |
提出日時 | 2019-12-22 15:26:53 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 331 bytes |
コンパイル時間 | 2,698 ms |
コンパイル使用メモリ | 31,828 KB |
実行使用メモリ | 32,532 KB |
最終ジャッジ日時 | 2024-09-14 07:32:13 |
合計ジャッジ時間 | 1,204 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
31,096 KB |
testcase_01 | AC | 41 ms
31,336 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 42 ms
31,280 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php list($holiday1, $holiday2, $end) = explode(" ", trim(fgets(STDIN))); suburiCheck($holiday1, $holiday2, $end); $ans = $end; echo $ans."\n"; function suburiCheck($h1, $h2, &$e): void{ $hCount = 0; if ($e <= $h1) $hCount++; if ($e <= $h2) $hCount++; if ($e < $hCount){ $e = 0; } else { $e -= $hCount; } }