結果

問題 No.396 クラス替え
ユーザー papinianuspapinianus
提出日時 2016-09-01 09:35:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 512 bytes
コンパイル時間 1,576 ms
コンパイル使用メモリ 30,872 KB
実行使用メモリ 30,868 KB
最終ジャッジ日時 2024-11-17 11:14:34
合計ジャッジ時間 3,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
30,612 KB
testcase_01 AC 38 ms
30,600 KB
testcase_02 AC 39 ms
30,836 KB
testcase_03 AC 38 ms
30,792 KB
testcase_04 AC 38 ms
30,800 KB
testcase_05 AC 37 ms
30,844 KB
testcase_06 AC 38 ms
30,816 KB
testcase_07 AC 38 ms
30,692 KB
testcase_08 AC 39 ms
30,728 KB
testcase_09 AC 36 ms
30,688 KB
testcase_10 AC 38 ms
30,868 KB
testcase_11 AC 37 ms
30,688 KB
testcase_12 AC 37 ms
30,572 KB
testcase_13 AC 37 ms
30,712 KB
testcase_14 AC 36 ms
30,656 KB
testcase_15 AC 38 ms
30,700 KB
testcase_16 AC 39 ms
30,656 KB
testcase_17 AC 38 ms
30,732 KB
testcase_18 AC 37 ms
30,732 KB
testcase_19 AC 37 ms
30,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($null, $m) = explode(" ",trim(fgets(STDIN)));
list($x, $y) = explode(" ",trim(fgets(STDIN)));
$x = getClass($x, $m);
$y = getClass($y, $m);

if($x == $y) {
    echo "YES";
} else {
    echo "NO";
}
echo PHP_EOL;

function getClass($x, $all) {
    $x = $x % ($all*2); // 往復を正規化
    if($x == 0) {$x = 1;} // 折り返しの終点が0になるが、これは1組と同等
    if($x > $all) { // 折り返し後の位置を正規化
        $x = $all - (($x % $all) -1);
    }
    return $x;
}
0