結果

問題 No.1509 Swap!!
ユーザー ks2mks2m
提出日時 2021-05-14 22:55:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 887 bytes
コンパイル時間 2,893 ms
コンパイル使用メモリ 77,940 KB
実行使用メモリ 59,332 KB
最終ジャッジ日時 2024-10-02 03:25:05
合計ジャッジ時間 14,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
36,744 KB
testcase_01 AC 59 ms
37,152 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 354 ms
45,592 KB
testcase_12 AC 332 ms
45,768 KB
testcase_13 AC 343 ms
45,472 KB
testcase_14 AC 346 ms
45,588 KB
testcase_15 AC 331 ms
45,612 KB
testcase_16 AC 319 ms
45,416 KB
testcase_17 AC 345 ms
45,232 KB
testcase_18 AC 338 ms
45,700 KB
testcase_19 AC 327 ms
45,564 KB
testcase_20 AC 348 ms
45,172 KB
testcase_21 AC 350 ms
45,528 KB
testcase_22 AC 350 ms
45,420 KB
testcase_23 AC 343 ms
45,704 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 321 ms
45,520 KB
testcase_28 AC 319 ms
46,120 KB
testcase_29 AC 318 ms
46,080 KB
testcase_30 AC 338 ms
45,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			String[] sa = br.readLine().split(" ");
			long n = Long.parseLong(sa[0]);
			long a = Long.parseLong(sa[1]);
			long b = Long.parseLong(sa[2]);

			if (solve(n, Math.min(a, b), Math.max(a, b))) {
				pw.println("YES");
			} else {
				pw.println("NO");
			}
		}
		pw.flush();
		br.close();
	}

	static boolean solve(long n, long a, long b) {
		if (b % a == 0 && a != 1) {
			return false;
		}
		if (a * 2 > n) {
			return false;
		}
		long d = n - b;
		if (d < a - 1) {
			return false;
		}
		return true;
	}
}
0