結果
問題 | No.396 クラス替え |
ユーザー | kano_town |
提出日時 | 2016-07-15 23:15:30 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 991 bytes |
コンパイル時間 | 3,366 ms |
コンパイル使用メモリ | 74,880 KB |
実行使用メモリ | 54,196 KB |
最終ジャッジ日時 | 2024-10-15 04:43:26 |
合計ジャッジ時間 | 7,085 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import java.util.Scanner; public class Yukicoder396 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long N = sc.nextLong(); long M = sc.nextLong(); long X = sc.nextLong(); long Y = sc.nextLong(); boolean flip = false; long buf = X; while (buf > 0) { buf -= M * 2; } buf += M * 2; if (buf > M) { buf = M * 2 - buf + 1; } System.out.println(buf); long add1 = (M - buf) * 2 + 1; long add2 = M * 2 - add1; while (buf < N) { System.out.println(buf); if (buf == Y) { System.out.println("YES"); return; } if (!flip) { buf += add1; flip = !flip; } else { buf += add2; flip = !flip; } } System.out.println("NO"); } }