結果

問題 No.982 Add
ユーザー 37zigen37zigen
提出日時 2020-02-11 15:23:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 1,729 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-10-01 07:53:50
合計ジャッジ時間 5,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,152 KB
testcase_01 AC 113 ms
41,528 KB
testcase_02 AC 108 ms
41,404 KB
testcase_03 AC 107 ms
41,072 KB
testcase_04 AC 108 ms
40,820 KB
testcase_05 AC 102 ms
40,396 KB
testcase_06 AC 112 ms
41,288 KB
testcase_07 AC 108 ms
41,428 KB
testcase_08 AC 98 ms
40,132 KB
testcase_09 AC 109 ms
41,068 KB
testcase_10 AC 111 ms
41,480 KB
testcase_11 AC 99 ms
40,136 KB
testcase_12 AC 107 ms
41,276 KB
testcase_13 AC 105 ms
41,644 KB
testcase_14 AC 98 ms
39,924 KB
testcase_15 AC 99 ms
40,320 KB
testcase_16 AC 93 ms
39,740 KB
testcase_17 AC 107 ms
41,536 KB
testcase_18 AC 106 ms
41,088 KB
testcase_19 AC 108 ms
41,108 KB
testcase_20 AC 105 ms
41,296 KB
testcase_21 AC 97 ms
40,108 KB
testcase_22 AC 108 ms
41,428 KB
testcase_23 AC 98 ms
40,236 KB
testcase_24 AC 99 ms
40,492 KB
testcase_25 AC 98 ms
40,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int A=sc.nextInt();
		int B=sc.nextInt();
		if(gcd(A,B)!=1) {
			System.out.println(-1);
		}else {
			boolean[] ok=new boolean[100000];
			for(int x=0;x<=2*B;++x) {
				for(int y=0;y<=2*A;++y) {
					ok[A*x+B*y]=true;
				}
			}
			int ans=0;
			for(int i=0;i<=2*A*B;++i) {
				if(!ok[i])++ans;
			}
			System.out.println(ans);
		}
		
	}
	
	int gcd(int a,int b) {
		return a==0?b:gcd(b%a,a);
	}
}
0