結果

問題 No.2811 Calculation Within Sequence
ユーザー highlighterhighlighter
提出日時 2024-07-04 11:24:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,047 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 4,410 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 70,020 KB
最終ジャッジ日時 2024-08-06 01:52:21
合計ジャッジ時間 43,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,972 KB
testcase_01 AC 110 ms
53,728 KB
testcase_02 AC 111 ms
54,340 KB
testcase_03 AC 997 ms
68,804 KB
testcase_04 AC 988 ms
68,900 KB
testcase_05 AC 977 ms
68,480 KB
testcase_06 AC 937 ms
69,660 KB
testcase_07 AC 1,017 ms
68,804 KB
testcase_08 AC 1,031 ms
68,780 KB
testcase_09 AC 1,042 ms
68,804 KB
testcase_10 AC 1,012 ms
68,992 KB
testcase_11 AC 1,015 ms
68,988 KB
testcase_12 AC 1,046 ms
68,804 KB
testcase_13 AC 915 ms
68,748 KB
testcase_14 AC 990 ms
68,692 KB
testcase_15 AC 951 ms
68,844 KB
testcase_16 AC 1,034 ms
69,064 KB
testcase_17 AC 957 ms
69,724 KB
testcase_18 AC 1,046 ms
69,016 KB
testcase_19 AC 1,047 ms
68,752 KB
testcase_20 AC 971 ms
69,092 KB
testcase_21 AC 933 ms
68,432 KB
testcase_22 AC 961 ms
68,532 KB
testcase_23 AC 1,026 ms
70,020 KB
testcase_24 AC 705 ms
68,484 KB
testcase_25 AC 558 ms
60,540 KB
testcase_26 AC 552 ms
59,224 KB
testcase_27 AC 838 ms
68,756 KB
testcase_28 AC 389 ms
59,328 KB
testcase_29 AC 700 ms
63,788 KB
testcase_30 AC 715 ms
66,092 KB
testcase_31 AC 705 ms
65,280 KB
testcase_32 AC 451 ms
59,352 KB
testcase_33 AC 694 ms
64,248 KB
testcase_34 AC 809 ms
68,772 KB
testcase_35 AC 588 ms
59,524 KB
testcase_36 AC 719 ms
64,556 KB
testcase_37 AC 630 ms
61,332 KB
testcase_38 AC 645 ms
63,388 KB
testcase_39 AC 638 ms
62,920 KB
testcase_40 AC 730 ms
66,468 KB
testcase_41 AC 763 ms
68,128 KB
testcase_42 AC 542 ms
58,740 KB
testcase_43 AC 637 ms
63,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static int gcd(int m,int n){
		int r;
		while(n > 0){
			r=m%n;
			m=n;
			n=r;
		}
		return m;
	}
	public static void main(String[] args){
		var sc=new java.util.Scanner(System.in);
		int a=sc.nextInt();
		int b=sc.nextInt();
		int t=0;
		for(int i=0;i<a;i++){
			int T=sc.nextInt();
			t=gcd(t,T);
		}
		int s=0;
		for(int i=0;i<b;i++){
			int S=sc.nextInt();
			s=gcd(s,S);
		}
		if(s%t==0){
			System.out.println("Yes");
		}
		else{
			System.out.println("No");
		}
	}
}
0