結果

問題 No.1509 Swap!!
ユーザー 遭難者遭難者
提出日時 2021-04-06 22:01:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 964 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 74,392 KB
実行使用メモリ 68,908 KB
最終ジャッジ日時 2024-09-13 08:36:01
合計ジャッジ時間 29,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,220 KB
testcase_01 AC 162 ms
54,528 KB
testcase_02 AC 907 ms
68,388 KB
testcase_03 AC 890 ms
68,740 KB
testcase_04 AC 947 ms
68,348 KB
testcase_05 AC 924 ms
68,400 KB
testcase_06 AC 928 ms
68,860 KB
testcase_07 AC 824 ms
68,908 KB
testcase_08 AC 932 ms
68,532 KB
testcase_09 AC 908 ms
68,512 KB
testcase_10 AC 902 ms
68,332 KB
testcase_11 AC 813 ms
68,672 KB
testcase_12 AC 822 ms
68,208 KB
testcase_13 AC 821 ms
68,412 KB
testcase_14 AC 818 ms
68,204 KB
testcase_15 AC 807 ms
68,788 KB
testcase_16 AC 844 ms
68,744 KB
testcase_17 AC 851 ms
68,444 KB
testcase_18 AC 847 ms
68,260 KB
testcase_19 AC 867 ms
68,404 KB
testcase_20 AC 876 ms
68,776 KB
testcase_21 AC 882 ms
68,528 KB
testcase_22 AC 885 ms
68,064 KB
testcase_23 AC 906 ms
68,808 KB
testcase_24 AC 964 ms
68,512 KB
testcase_25 AC 943 ms
68,272 KB
testcase_26 AC 932 ms
68,352 KB
testcase_27 AC 821 ms
66,836 KB
testcase_28 AC 801 ms
66,964 KB
testcase_29 AC 831 ms
66,644 KB
testcase_30 AC 837 ms
68,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main {
    public static void main(String[] args) {
        var sc = new java.util.Scanner(System.in);
        var ou = new java.io.PrintWriter(System.out);
        int t = sc.nextInt();
        for(int $ = 0 ; $ < t ; $++){
            long n = sc.nextLong();
            long a = sc.nextLong();
            long b = sc.nextLong();
            ou.println(a + b <= n + 1 && g(a, b) == 1 ? "YES" : "NO");
        }
        ou.flush();
    }
    static long g(long a, long b) {
        return b == 0 ? a : g(b, a % b);
    }
}
0