結果

問題 No.982 Add
ユーザー htensaihtensai
提出日時 2020-02-13 19:08:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-10-06 06:19:18
合計ジャッジ時間 6,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,116 KB
testcase_01 AC 129 ms
40,940 KB
testcase_02 AC 129 ms
41,336 KB
testcase_03 AC 129 ms
40,748 KB
testcase_04 AC 129 ms
40,852 KB
testcase_05 AC 129 ms
41,248 KB
testcase_06 AC 129 ms
41,072 KB
testcase_07 AC 129 ms
40,848 KB
testcase_08 AC 128 ms
41,020 KB
testcase_09 AC 129 ms
41,288 KB
testcase_10 AC 130 ms
41,148 KB
testcase_11 AC 116 ms
40,400 KB
testcase_12 AC 129 ms
41,228 KB
testcase_13 AC 130 ms
41,368 KB
testcase_14 AC 131 ms
41,168 KB
testcase_15 AC 130 ms
41,044 KB
testcase_16 AC 126 ms
41,128 KB
testcase_17 AC 128 ms
41,052 KB
testcase_18 AC 129 ms
41,144 KB
testcase_19 AC 126 ms
40,772 KB
testcase_20 AC 114 ms
39,952 KB
testcase_21 AC 129 ms
40,816 KB
testcase_22 AC 130 ms
40,988 KB
testcase_23 AC 132 ms
41,116 KB
testcase_24 AC 118 ms
39,904 KB
testcase_25 AC 129 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		if (gcd(a, b) != 1) {
		    System.out.println(-1);
		    return;
		}
		int max = a * b;
		boolean[] check = new boolean[max + 1];
		for (int i = 0; i * a <= max; i++) {
		    for (int j = 0; i * a + j * b <= max; j++) {
		        check[i * a + j * b] = true;
		    }
		}
		int count = 0;
		for (int i = 1; i <= max; i++) {
		    if (!check[i]) {
		        count++;
		    }
		}
		System.out.println(count);
   }
   
   static int gcd(int x, int y) {
       if (x % y == 0) {
           return y;
       } else {
           return gcd(y, x % y);
       }
   }
}
0