結果
問題 | No.396 クラス替え |
ユーザー | crazybbb3 |
提出日時 | 2016-11-27 18:16:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,868 bytes |
コンパイル時間 | 2,200 ms |
コンパイル使用メモリ | 77,868 KB |
実行使用メモリ | 37,200 KB |
最終ジャッジ日時 | 2024-11-27 12:17:01 |
合計ジャッジ時間 | 4,078 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 54 ms
36,700 KB |
testcase_02 | AC | 55 ms
36,816 KB |
testcase_03 | AC | 54 ms
37,052 KB |
testcase_04 | AC | 54 ms
36,816 KB |
testcase_05 | AC | 52 ms
36,968 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 53 ms
36,828 KB |
testcase_09 | WA | - |
testcase_10 | AC | 54 ms
36,828 KB |
testcase_11 | AC | 53 ms
36,688 KB |
testcase_12 | WA | - |
testcase_13 | AC | 53 ms
36,828 KB |
testcase_14 | WA | - |
testcase_15 | AC | 54 ms
36,936 KB |
testcase_16 | WA | - |
testcase_17 | AC | 56 ms
37,084 KB |
testcase_18 | AC | 54 ms
36,700 KB |
testcase_19 | AC | 55 ms
37,120 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.StringTokenizer; public class Main { static BufferedReader in; static PrintWriter out; static StringTokenizer tok; void solve() throws IOException { int n = ni(); int m = ni(); int x = ni() - 1; int y = ni() - 1; int c1 = x % (2 * m) < m ? x % (2 * m) : 2 * m - 1 - x % (2 * m); int c2 = y % (2 * m) < m ? y % (2 * m) : 2 * m - 1 - x % (2 * m); out.println(c1 == c2 ? "YES" : "NO"); } String ns() throws IOException { while (!tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine(), " "); } return tok.nextToken(); } int ni() throws IOException { return Integer.parseInt(ns()); } long nl() throws IOException { return Long.parseLong(ns()); } double nd() throws IOException { return Double.parseDouble(ns()); } String[] nsa(int n) throws IOException { String[] res = new String[n]; for (int i = 0; i < n; i++) { res[i] = ns(); } return res; } int[] nia(int n) throws IOException { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = ni(); } return res; } long[] nla(int n) throws IOException { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nl(); } return res; } public static void main(String[] args) throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); tok = new StringTokenizer(""); Main main = new Main(); main.solve(); out.close(); } }