結果
問題 | No.396 クラス替え |
ユーザー | atkrym |
提出日時 | 2016-11-07 20:25:25 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 2,285 ms |
コンパイル使用メモリ | 74,712 KB |
実行使用メモリ | 54,780 KB |
最終ジャッジ日時 | 2024-05-03 22:58:11 |
合計ジャッジ時間 | 14,315 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
46,604 KB |
testcase_01 | AC | 130 ms
41,556 KB |
testcase_02 | AC | 132 ms
41,496 KB |
testcase_03 | AC | 704 ms
41,624 KB |
testcase_04 | AC | 454 ms
41,260 KB |
testcase_05 | AC | 939 ms
41,224 KB |
testcase_06 | AC | 277 ms
41,184 KB |
testcase_07 | AC | 239 ms
41,332 KB |
testcase_08 | TLE | - |
testcase_09 | AC | 624 ms
41,616 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 | 138 ms
53,744 KB |
testcase_19 | AC | 143 ms
54,360 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"); } } }