結果

問題 No.396 クラス替え
ユーザー papinianuspapinianus
提出日時 2016-09-01 09:19:34
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 4,458 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-11-15 16:33:14
合計ジャッジ時間 6,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,136 KB
testcase_01 AC 41 ms
31,352 KB
testcase_02 AC 40 ms
30,920 KB
testcase_03 AC 40 ms
31,044 KB
testcase_04 AC 41 ms
31,200 KB
testcase_05 AC 41 ms
31,208 KB
testcase_06 AC 41 ms
31,080 KB
testcase_07 WA -
testcase_08 AC 41 ms
31,224 KB
testcase_09 WA -
testcase_10 AC 40 ms
31,372 KB
testcase_11 AC 39 ms
31,256 KB
testcase_12 AC 40 ms
31,436 KB
testcase_13 AC 41 ms
31,132 KB
testcase_14 AC 41 ms
31,104 KB
testcase_15 AC 41 ms
30,996 KB
testcase_16 AC 40 ms
31,176 KB
testcase_17 AC 39 ms
31,356 KB
testcase_18 WA -
testcase_19 AC 41 ms
31,032 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 %= $all*2; // 往復を正規化
    if($x > $all) { // 折り返し後の位置を正規化
        $x = $all - (($x % $all) -1);
    }
    return $x;
}
0