結果

問題 No.1509 Swap!!
ユーザー ks2mks2m
提出日時 2021-05-14 23:01:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 78,024 KB
実行使用メモリ 46,476 KB
最終ジャッジ日時 2024-10-02 03:39:40
合計ジャッジ時間 12,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,784 KB
testcase_01 AC 51 ms
36,992 KB
testcase_02 AC 310 ms
45,504 KB
testcase_03 AC 301 ms
45,992 KB
testcase_04 AC 306 ms
45,684 KB
testcase_05 AC 317 ms
45,688 KB
testcase_06 AC 308 ms
45,572 KB
testcase_07 AC 315 ms
45,424 KB
testcase_08 AC 307 ms
45,768 KB
testcase_09 AC 306 ms
45,496 KB
testcase_10 AC 307 ms
45,632 KB
testcase_11 AC 289 ms
45,584 KB
testcase_12 AC 281 ms
45,352 KB
testcase_13 AC 290 ms
45,320 KB
testcase_14 AC 280 ms
45,480 KB
testcase_15 AC 282 ms
45,696 KB
testcase_16 AC 295 ms
45,440 KB
testcase_17 AC 285 ms
45,332 KB
testcase_18 AC 284 ms
45,424 KB
testcase_19 AC 290 ms
45,420 KB
testcase_20 AC 286 ms
45,560 KB
testcase_21 AC 297 ms
45,496 KB
testcase_22 AC 281 ms
45,668 KB
testcase_23 AC 300 ms
45,740 KB
testcase_24 AC 329 ms
45,428 KB
testcase_25 AC 341 ms
45,608 KB
testcase_26 AC 334 ms
45,936 KB
testcase_27 AC 266 ms
46,476 KB
testcase_28 AC 258 ms
45,548 KB
testcase_29 AC 262 ms
45,840 KB
testcase_30 AC 288 ms
45,512 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 (a == 1) {
			return true;
		}
		if (b % a == 0) {
			return false;
		}
		if (a * 2 > n) {
			return false;
		}
		long d = n - b;
		if (d < a - 1) {
			return false;
		}
		if (gcd(a, b) != 1) {
			return false;
		}
		return true;
	}

	static long gcd(long a, long b) {
		return b == 0 ? a : gcd(b, a % b);
	}
}
0