結果
問題 | No.396 クラス替え |
ユーザー | kano_town |
提出日時 | 2016-07-15 22:41:59 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 793 bytes |
コンパイル時間 | 2,990 ms |
コンパイル使用メモリ | 78,748 KB |
実行使用メモリ | 244,488 KB |
最終ジャッジ日時 | 2024-10-15 04:33:20 |
合計ジャッジ時間 | 6,469 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
41,096 KB |
testcase_01 | AC | 121 ms
40,928 KB |
testcase_02 | AC | 109 ms
39,804 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | MLE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 123 ms
41,388 KB |
testcase_18 | AC | 118 ms
41,004 KB |
testcase_19 | AC | 128 ms
41,112 KB |
ソースコード
import java.util.Scanner; public class Yukicoder396 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int M = sc.nextInt(); int X = sc.nextInt(); int Y = sc.nextInt(); int[] g = new int[N]; int m = 0; boolean up = true; for (int i = 0; i < N; i++) { g[i] = m; if (up) { m++; if (m >= M) { m--; up = false; } } else { m--; if (m < 0) { m++; up = true; } } } System.out.println(g[X - 1] == g[Y - 1] ? "YES" : "NO"); } }