結果
問題 | No.396 クラス替え |
ユーザー | atkrym |
提出日時 | 2016-11-07 20:25:25 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 2,102 ms |
コンパイル使用メモリ | 74,632 KB |
実行使用メモリ | 54,412 KB |
最終ジャッジ日時 | 2024-11-25 04:21:42 |
合計ジャッジ時間 | 17,572 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
53,124 KB |
testcase_01 | AC | 118 ms
53,908 KB |
testcase_02 | AC | 116 ms
53,736 KB |
testcase_03 | AC | 630 ms
53,392 KB |
testcase_04 | AC | 410 ms
54,180 KB |
testcase_05 | AC | 810 ms
53,148 KB |
testcase_06 | AC | 254 ms
54,284 KB |
testcase_07 | AC | 202 ms
53,544 KB |
testcase_08 | TLE | - |
testcase_09 | AC | 573 ms
53,768 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 123 ms
54,376 KB |
testcase_19 | AC | 125 ms
54,084 KB |
ソースコード
import java.util.*; public class Main { private static Scanner sc = new Scanner(System.in); public static void main(String[] args) throws Exception { int n = sc.nextInt(); int m = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int h = 0; int t = 0; int c = 0; while (true) { for (int i = 1;i <= m;i++) { c++; if (c==x) { h = i; } else if (c==y) { t = i; } } for (int i = m;i > 0;i--) { c++; if (c==x) { h = i; } else if (c==y) { t = i; } } if (c>n) break; } if (h==t) { System.out.println("YES"); } else { System.out.println("NO"); } } }