結果

問題 No.857 素振り
ユーザー mondomondo
提出日時 2019-08-13 12:28:26
言語 PHP
(8.3.4)
結果
RE  
実行時間 -
コード長 232 bytes
コンパイル時間 4,357 ms
コンパイル使用メモリ 30,940 KB
実行使用メモリ 31,628 KB
最終ジャッジ日時 2024-09-19 13:22:45
合計ジャッジ時間 974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,280 KB
testcase_01 AC 41 ms
31,296 KB
testcase_02 AC 36 ms
31,384 KB
testcase_03 AC 36 ms
31,264 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($rest1, $rest2, $finish) = explode(" ", trim(fgets(STDIN)));
$bat = range(1, $finish);
$cnt = 0;
foreach ($bat as $value){
    if ($value == $rest1 || $value == $rest2) {
        $cnt ++;
    }
}
echo abs($finish - $cnt);
0